You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,12 +46,12 @@ Delete this line and everything above, and then fill in the details below.
46
46
<WinForms/WPF/OffScreen>
47
47
48
48
-**What steps will reproduce the problem?**
49
-
- Please provide detailed information here, enough for someone else to reprodce your problem.
49
+
- Please provide detailed information here, enough for someone else to reproduce your problem.
50
50
- Does the problem reproduce using the [MinimalExample](https://github.com/cefsharp/CefSharp.MinimalExample)?
51
51
- If code is required to reproduce your problem then please provide one of the following
52
52
- Fork the [MinimalExample](https://github.com/cefsharp/CefSharp.MinimalExample) and push your changes to `GitHub` (this is the preferred option).
53
53
- Use a code sharing service list `Gist` or `Pastebin`
54
-
- Paste your **formatted code as part of this issue** (only do this for small amounts of code and make sure you **format the code so it's reabily**)
54
+
- Paste your **formatted code as part of this issue** (only do this for small amounts of code and make sure you **format the code so it's readable**)
55
55
- Please no binary attachments (zip, 7z, etc), code needs to be easily reviewed in a web browser.
56
56
57
57
-**What is the expected output? What do you see instead?**
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/feature_request.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Please use one of the following to ask your questions:
13
13
14
14
---
15
15
16
-
`CefSharp` is a wrapper around the [Chromium Embedded Framework](https://bitbucket.org/chromiumembedded/cef/overview) in a lot of cases a feature must be added to `CEF` first before it can be used in `CefSharp`. `CEF` has it's own `Feature Request Forum` at https://magpcss.org/ceforum/viewforum.php?f=7
16
+
`CefSharp` is a wrapper around the [Chromium Embedded Framework](https://bitbucket.org/chromiumembedded/cef/overview) in a lot of cases a feature must be added to `CEF` first before it can be used in `CefSharp`. `CEF` has its own `Feature Request Forum` at https://magpcss.org/ceforum/viewforum.php?f=7
/// <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
183
+
/// <param name="performDependencyCheck">Check that all relevant dependencies available, throws exception if any are missing</param>
184
184
/// <param name="browserProcessHandler">The handler for functionality specific to the browser process. Null if you don't wish to handle these events</param>
185
185
/// <returns>true if successful; otherwise, false.</returns>
// NOTE: Can only initialize Cef once, to make this explicitly clear throw exception on subsiquent attempts
207
+
// NOTE: Can only initialize Cef once, to make this explicitly clear throw exception on subsequent attempts
208
208
throw gcnew Exception("CEF can only be initialized once per process. This is a limitation of the underlying " +
209
209
"CEF/Chromium framework. You can change many (not all) settings at runtime through RequestContext.SetPreference. " +
210
210
"See https://github.com/cefsharp/CefSharp/wiki/General-Usage#request-context-browser-isolation " +
@@ -280,10 +280,10 @@ namespace CefSharp
280
280
}
281
281
282
282
/// <summary>
283
-
/// Perform a single iteration of CEF message loop processing.This function is
283
+
/// Perform a single iteration of CEF message loop processing.This function is
284
284
/// provided for cases where the CEF message loop must be integrated into an
285
285
/// existing application message loop. Use of this function is not recommended
286
-
/// for most users; use CefSettings.MultiThreadedMessageLoop if possible (the deault).
286
+
/// for most users; use CefSettings.MultiThreadedMessageLoop if possible (the default).
287
287
/// When using this function care must be taken to balance performance
288
288
/// against excessive CPU usage. It is recommended to enable the
289
289
/// CefSettings.ExternalMessagePump option when using
@@ -433,7 +433,7 @@ namespace CefSharp
433
433
/// - Access the ICookieManager instance in IBrowserProcessHandler.OnContextInitialized.
434
434
/// - Use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.
435
435
/// </summary>
436
-
/// <param name="callback">If non-NULL it will be executed asnychronously on the CEF UI thread after the manager's storage has been initialized.</param>
436
+
/// <param name="callback">If non-NULL it will be executed asynchronously on the CEF UI thread after the manager's storage has been initialized.</param>
437
437
/// <returns>A the global cookie manager or null if the RequestContext has not yet been initialized.</returns>
0 commit comments