@@ -84,18 +84,6 @@ namespace CefSharp
84
84
CommandLineArgDictionary^ get () { return _cefCommandLineArgs; }
85
85
}
86
86
87
- // / <summary>
88
- // / **Experimental**
89
- // / Set to true to enable use of the Chrome runtime in CEF. This feature is
90
- // / considered experimental and is not recommended for most users at this time.
91
- // / See issue https://github.com/chromiumembedded/cef/issues/2969
92
- // / </summary>
93
- property bool ChromeRuntime
94
- {
95
- bool get () { return _cefSettings->chrome_runtime == 1 ; }
96
- void set (bool value) { _cefSettings->chrome_runtime = value; }
97
- }
98
-
99
87
// / <summary>
100
88
// / Set to true to disable configuration of browser process features using standard CEF and Chromium command-line arguments.
101
89
// / Configuration can still be specified using CEF data structures or by adding to CefCommandLineArgs.
@@ -235,17 +223,6 @@ namespace CefSharp
235
223
void set (String^ value) { StringUtils::AssignNativeFromClr (_cefSettings->javascript_flags , value); }
236
224
}
237
225
238
- // / <summary>
239
- // / Set to true to disable loading of pack files for resources and locales. A resource bundle handler must be provided for the
240
- // / browser and render processes via CefApp::GetResourceBundleHandler() if loading of pack files is disabled. Also configurable
241
- // / using the "disable-pack-loading" command- line switch.
242
- // / </summary>
243
- property bool PackLoadingDisabled
244
- {
245
- bool get () { return _cefSettings->pack_loading_disabled == 1 ; }
246
- void set (bool value) { _cefSettings->pack_loading_disabled = value; }
247
- }
248
-
249
226
// / <summary>
250
227
// / Value that will be inserted as the product portion of the default User-Agent string. If empty the Chromium product version
251
228
// / will be used. If UserAgent is specified this value will be ignored. Also configurable using the "user-agent-product" command-
@@ -312,17 +289,6 @@ namespace CefSharp
312
289
void set (bool value) { _cefSettings->persist_session_cookies = value; }
313
290
}
314
291
315
- // / <summary>
316
- // / To persist user preferences as a JSON file in the cache path directory set this value to true. A CachePath value must also be
317
- // / specified to enable this feature. Also configurable using the "persist-user-preferences" command-line switch. Can be
318
- // / overridden for individual RequestContext instances via the RequestContextSettings.PersistUserPreferences value.
319
- // / </summary>
320
- property bool PersistUserPreferences
321
- {
322
- bool get () { return _cefSettings->persist_user_preferences == 1 ; }
323
- void set (bool value) { _cefSettings->persist_user_preferences = value; }
324
- }
325
-
326
292
// / <summary>
327
293
// / Comma delimited ordered list of language codes without any whitespace that will be used in the "Accept-Language" HTTP header.
328
294
// / May be set globally using the CefSettings.AcceptLanguageList value. If both values are empty then "en-US,en" will be used.
0 commit comments