File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,18 @@ namespace CefSharp
93
93
CommandLineArgDictionary^ get () { return _cefCommandLineArgs; }
94
94
}
95
95
96
+ // / <summary>
97
+ // / **Experimental**
98
+ // / Set to true to enable use of the Chrome runtime in CEF. This feature is
99
+ // / considered experimental and is not recommended for most users at this time.
100
+ // / See issue https://bitbucket.org/chromiumembedded/cef/issues/2969/support-chrome-windows-with-cef-callbacks for details.
101
+ // / </summary>
102
+ property bool ChromeRuntime
103
+ {
104
+ bool get () { return _cefSettings->chrome_runtime == 1 ; }
105
+ void set (bool value) { _cefSettings->chrome_runtime = value; }
106
+ }
107
+
96
108
// / <summary>
97
109
// / Set to true to disable configuration of browser process features using standard CEF and Chromium command-line arguments.
98
110
// / Configuration can still be specified using CEF data structures or by adding to CefCommandLineArgs.
Original file line number Diff line number Diff line change @@ -60,6 +60,18 @@ public CommandLineArgDictionary CefCommandLineArgs
60
60
get { return settings . CefCommandLineArgs ; }
61
61
}
62
62
63
+ /// <summary>
64
+ /// **Experimental**
65
+ /// Set to true to enable use of the Chrome runtime in CEF. This feature is
66
+ /// considered experimental and is not recommended for most users at this time.
67
+ /// See issue https://bitbucket.org/chromiumembedded/cef/issues/2969/support-chrome-windows-with-cef-callbacks for details.
68
+ /// </summary>
69
+ public bool ChromeRuntime
70
+ {
71
+ get { return settings . ChromeRuntime ; }
72
+ set { settings . ChromeRuntime = value ; }
73
+ }
74
+
63
75
/// <summary>
64
76
/// Set to true to disable configuration of browser process features using standard CEF and Chromium command-line arguments.
65
77
/// Configuration can still be specified using CEF data structures or by adding to CefCommandLineArgs.
You can’t perform that action at this time.
0 commit comments