File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
CefSharp.MinimalExample.OffScreen
CefSharp.MinimalExample.WinForms
CefSharp.MinimalExample.Wpf Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static int Main(string[] args)
35
35
} ;
36
36
37
37
//Perform dependency check to make sure all relevant resources are in our output directory.
38
- Cef . Initialize ( settings , performDependencyCheck : false , browserProcessHandler : null ) ;
38
+ Cef . Initialize ( settings , performDependencyCheck : true , browserProcessHandler : null ) ;
39
39
40
40
// Create the offscreen Chromium browser.
41
41
browser = new ChromiumWebBrowser ( testUrl ) ;
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public static int Main(string[] args)
42
42
settings . CefCommandLineArgs . Add ( "enable-usermedia-screen-capturing" ) ;
43
43
44
44
//Perform dependency check to make sure all relevant resources are in our output directory.
45
- Cef . Initialize ( settings , performDependencyCheck : false , browserProcessHandler : null ) ;
45
+ Cef . Initialize ( settings , performDependencyCheck : true , browserProcessHandler : null ) ;
46
46
47
47
var browser = new BrowserForm ( ) ;
48
48
Application . Run ( browser ) ;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public App()
37
37
if ( ! Cef . IsInitialized )
38
38
{
39
39
//Perform dependency check to make sure all relevant resources are in our output directory.
40
- Cef . Initialize ( settings , performDependencyCheck : false , browserProcessHandler : null ) ;
40
+ Cef . Initialize ( settings , performDependencyCheck : true , browserProcessHandler : null ) ;
41
41
}
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments