Skip to content

Commit 49c8c37

Browse files
committed
Inc'd review comments entered in dest. PR
1 parent a7373dc commit 49c8c37

15 files changed

+40
-36
lines changed

microsoft-edge/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,15 +1025,15 @@
10251025
href: webview2/code-samples-links.md
10261026
displayName:
10271027

1028-
- name: Win32 sample app (WebView2APISample)
1028+
- name: Win32 sample app
10291029
href: webview2/samples/webview2apissample.md
10301030
displayName: WebView2APISample, SampleApps, Win32 sample app # repo dir names, top-of-page title
10311031

10321032
- name: Win32 sample app with Visual Composition
10331033
href: webview2/samples/webview2samplewincomp.md
10341034
displayName: WebView2SampleWinComp, Win32 sample app with Visual Composition # repo dir name, top-of-page title
10351035

1036-
- name: WebView2Browser (Win32 C++/JS)
1036+
- name: Win32 sample WebView2Browser
10371037
href: webview2/samples/webview2browser.md
10381038
displayName: WebView2Browser # repo dir name
10391039

microsoft-edge/webview2/code-samples-links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Sample apps that use WebView2 are available in the [WebView2Samples repo](https:
1414

1515
| Article | Sample | Notes |
1616
|---|---|---|
17-
| [Win32 sample app (WebView2APISample)](samples/webview2apissample.md) | [WebView2APISample](https://github.com/MicrosoftEdge/WebView2Samples/tree/main/SampleApps/WebView2APISample) | Main sample; extensive. |
17+
| [Win32 sample app](samples/webview2apissample.md) | [WebView2APISample](https://github.com/MicrosoftEdge/WebView2Samples/tree/main/SampleApps/WebView2APISample) | Main sample; extensive. |
1818
| [Win32 sample app with Visual Composition](samples/webview2samplewincomp.md) | [WebView2SampleWinComp](https://github.com/MicrosoftEdge/WebView2Samples/tree/main/SampleApps/WebView2SampleWinComp) | Windows Runtime Composition APIs leverage the Windows UI in Win32 app. |
1919
| [WebView2Browser (Win32 C++/JS)](samples/webview2browser.md) | [WebView2Browser repo](https://github.com/MicrosoftEdge/WebView2Browser) | Uses multiple WebView2 instances. A major sample; has its own repo. |
2020
| [WinUI 2 (UWP) sample app](samples/webview2_sample_uwp.md) | [webview2_sample_uwp](https://github.com/MicrosoftEdge/WebView2Samples/tree/main/SampleApps/webview2_sample_uwp) |   |

microsoft-edge/webview2/get-started/win32.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The completed tutorial project is available in the **WebView2Samples** repo:
3535

3636

3737
<!-- ====================================================================== -->
38-
## Step 1 - Prerequisite: Install Visual Studio
38+
## Step 1 - Install Visual Studio
3939

4040
This tutorial requires Microsoft Visual Studio, not Microsoft Visual Studio Code.
4141

@@ -45,7 +45,7 @@ Then return to this page and continue below.
4545

4646

4747
<!-- ====================================================================== -->
48-
## Step 2 - Prerequisite: Install a preview channel of Microsoft Edge
48+
## Step 2 - Install a preview channel of Microsoft Edge
4949

5050
1. If it's not installed already, install a preview channel of Microsoft Edge. To do that, in a new window or tab, see [Install a preview channel of Microsoft Edge](../how-to/machine-setup.md#install-a-preview-channel-of-microsoft-edge) in _Set up your Dev environment for WebView2_.
5151

microsoft-edge/webview2/how-to/hostobject.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Scenarios that may benefit from using host objects in script:
3939

4040
* JavaScript is sandboxed, limiting its ability on the native side. For example, if you need to access a file on the native side, you must use the native file system. If you have a native object exposed to JavaScript via `AddHostObjectToScript`, you can use it to manipulate files on the native file system.
4141

42-
This article uses the [Win32 sample app (WebView2APISample)](https://github.com/MicrosoftEdge/WebView2Samples/tree/main/SampleApps/WebView2APISample) to demonstrate some practical applications of `AddHostObjectToScript`. For more information about how to embed web content into native applications, see [Embed web content into native applications](/microsoft-edge/webview2/how-to/communicate-btwn-web-native).
42+
This article uses the [Win32 sample app](https://github.com/MicrosoftEdge/WebView2Samples/tree/main/SampleApps/WebView2APISample) to demonstrate some practical applications of `AddHostObjectToScript`. For more information about how to embed web content into native applications, see [Embed web content into native applications](/microsoft-edge/webview2/how-to/communicate-btwn-web-native).
4343

4444

4545
#### Preview of the major steps in this article

microsoft-edge/webview2/how-to/machine-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This article covers general-purpose setup of your development environment for We
2020

2121
The WebView2 samples are designed for Microsoft **Visual Studio**, not Microsoft **Visual Studio Code**.
2222

23-
If you are installing Visual Studio, you can accept the defaults for now; you can click **Install**, and decline installing the Workloads at this time. Visual Studio will prompt you later, when you open a particular `.sln` file, to install the platform-appropriate workloads.
23+
If you are installing Visual Studio, you can accept the defaults for now; you can click **Install**, and then decline installing the Workloads at this time. Visual Studio will prompt you later, when you open a particular `.sln` file, to install the platform-appropriate workloads.
2424

2525

2626
<!-- ====================================================================== -->

microsoft-edge/webview2/how-to/webresourcerequested.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ The `NavigateWithWebResourceRequest` method allows your host app to navigate the
296296
<!-- ====================================================================== -->
297297
### Example: Constructing a custom request and navigating using that request
298298
299-
<!-- This is an existing example in the Win32 sample app (WebView2APISample). -->
299+
<!-- This is an existing example in the Win32 sample app. -->
300300
301301
<!-- CreateWebResourceRequest and NavigateWithWebResourceRequest -->
302302

microsoft-edge/webview2/samples/webview2_sample_uwp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ See also [README file for webview2_sample_uwp](https://github.com/MicrosoftEdge/
3131

3232

3333
<!-- ====================================================================== -->
34-
## Step 1 - Prerequisite: Install Visual Studio
34+
## Step 1 - Install Visual Studio
3535

3636
Microsoft Visual Studio is required. Microsoft Visual Studio Code is not supported for this sample.
3737

3838
1. If Visual Studio (minimum required version) is not already installed, in a separate window or tab, see [Install Visual Studio](../how-to/machine-setup.md#install-visual-studio) in _Set up your Dev environment for WebView2_. Follow the steps in that section, and then return to this page and continue the steps below.
3939

4040

4141
<!-- ====================================================================== -->
42-
## Step 2 - Prerequisite: Install a preview channel of Microsoft Edge
42+
## Step 2 - Install a preview channel of Microsoft Edge
4343

4444
1. If a preview channel of Microsoft Edge (Beta, Dev, or Canary) is not already installed, in a separate window or tab, see [Install a preview channel of Microsoft Edge](../how-to/machine-setup.md#install-a-preview-channel-of-microsoft-edge) in _Set up your Dev environment for WebView2_. Follow the steps in that section, and then return to this page and continue the steps below.
4545

microsoft-edge/webview2/samples/webview2apissample.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Win32 sample app (WebView2APISample)
2+
title: Win32 sample app
33
description: This WebView2 sample demonstrates how to use the WebView2 control and WebView2 APIs to add features to a Win32 C++ app.
44
author: MSEdgeTeam
55
ms.author: msedgedevrel
@@ -8,7 +8,7 @@ ms.prod: microsoft-edge
88
ms.technology: webview
99
ms.date: 07/29/2022
1010
---
11-
# Win32 sample app (WebView2APISample)
11+
# Win32 sample app
1212

1313
This sample, **WebView2APISample**, demonstrates how to use the WebView2 control and WebView2 APIs to add features to a Win32 C++ app.
1414

@@ -42,15 +42,15 @@ For details of events and API handlers in WebView2, see [WebView2 API Reference]
4242

4343

4444
<!-- ====================================================================== -->
45-
## Step 1 - Prerequisite: Install a preview channel of Microsoft Edge
45+
## Step 1 - Install a preview channel of Microsoft Edge
4646

4747
Next, make sure a preview channel of Microsoft Edge in installed, on a supported OS. Currently we recommend the latest version of the Canary channel.
4848

4949
1. If a preview channel of Microsoft Edge (Beta, Dev, or Canary) is not already installed, in a separate window or tab, see [Install a preview channel of Microsoft Edge](../how-to/machine-setup.md#install-a-preview-channel-of-microsoft-edge) in _Set up your Dev environment for WebView2_. Follow the steps in that section, and then return to this page and continue the steps below.
5050

5151

5252
<!-- ====================================================================== -->
53-
## Step 2 - Prerequisite: Install Visual Studio 2019
53+
## Step 2 - Install Visual Studio 2019
5454

5555
Microsoft Visual Studio is required. Microsoft Visual Studio Code is not supported for this sample. This repo sample is a Visual Studio 2019 project.
5656

microsoft-edge/webview2/samples/webview2browser.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: WebView2Browser (Win32 C++/JS)
2+
title: Win32 sample WebView2Browser
33
description: "A web browser built with the Microsoft Edge WebView2 control."
44
author: MSEdgeTeam
55
ms.author: msedgedevrel
@@ -8,9 +8,13 @@ ms.prod: microsoft-edge
88
ms.technology: webview
99
ms.date: 07/18/2022
1010
---
11-
# WebView2Browser (Win32 C++/JS)
11+
# Win32 sample WebView2Browser
1212

13-
<!-- copied from https://github.com/MicrosoftEdge/WebView2Browser#readme -->
13+
<!-- copied from:
14+
https://github.com/MicrosoftEdge/WebView2Browser#readme
15+
aka
16+
https://github.com/MicrosoftEdge/WebView2Browser/blob/main/README.md
17+
-->
1418

1519
This sample, **WebView2Browser**, is a web browser built with the [Microsoft Edge WebView2](https://aka.ms/webview2) control.
1620

microsoft-edge/webview2/samples/webview2samplewincomp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ See also [Readme file for WebView2SampleWinComp](https://github.com/MicrosoftEdg
2828

2929

3030
<!-- ====================================================================== -->
31-
## Step 1 - Prerequisite: Install a preview channel of Microsoft Edge
31+
## Step 1 - Install a preview channel of Microsoft Edge
3232

3333
We recommend the latest version of the Edge Canary channel.
3434

3535
1. If a preview channel of Microsoft Edge (Beta, Dev, or Canary) is not already installed, in a separate window or tab, see [Install a preview channel of Microsoft Edge](../how-to/machine-setup.md#install-a-preview-channel-of-microsoft-edge) in _Set up your Dev environment for WebView2_. Follow the steps in that section, and then return to this page and continue the steps below.
3636

3737

3838
<!-- ====================================================================== -->
39-
## Step 2 - Prerequisite: Install Visual Studio with C++ support
39+
## Step 2 - Install Visual Studio with C++ support
4040

4141
Microsoft Visual Studio is required. Microsoft Visual Studio Code is not supported for this sample.
4242

0 commit comments

Comments
 (0)