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)
3535 } ;
3636
3737 //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 ) ;
3939
4040 // Create the offscreen Chromium browser.
4141 browser = new ChromiumWebBrowser ( testUrl ) ;
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public static int Main(string[] args)
4242 settings . CefCommandLineArgs . Add ( "enable-usermedia-screen-capturing" ) ;
4343
4444 //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 ) ;
4646
4747 var browser = new BrowserForm ( ) ;
4848 Application . Run ( browser ) ;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public App()
3737 if ( ! Cef . IsInitialized )
3838 {
3939 //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 ) ;
4141 }
4242 }
4343
You can’t perform that action at this time.
0 commit comments