diff options
-rw-r--r-- | content/child/runtime_features.cc | 3 | ||||
-rw-r--r-- | content/public/common/content_switches.cc | 4 | ||||
-rw-r--r-- | content/public/common/content_switches.h | 1 |
3 files changed, 0 insertions, 8 deletions
diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc index a1466db..bcdc8c7 100644 --- a/content/child/runtime_features.cc +++ b/content/child/runtime_features.cc @@ -74,9 +74,6 @@ void SetRuntimeFeaturesDefaultsAndUpdateFromArgs( if (command_line.HasSwitch(switches::kDisableDesktopNotifications)) WebRuntimeFeatures::enableNotifications(false); - if (command_line.HasSwitch(switches::kDisableNavigatorContentUtils)) - WebRuntimeFeatures::enableNavigatorContentUtils(false); - if (command_line.HasSwitch(switches::kDisableLocalStorage)) WebRuntimeFeatures::enableLocalStorage(false); diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc index c78a95b..c9097e6 100644 --- a/content/public/common/content_switches.cc +++ b/content/public/common/content_switches.cc @@ -122,10 +122,6 @@ const char kDisableDelegatedRenderer[] = "disable-delegated-renderer"; // Disables desktop notifications (default enabled on windows). const char kDisableDesktopNotifications[] = "disable-desktop-notifications"; -// Disables experimental navigator content utils implementation. -const char kDisableNavigatorContentUtils[] = - "disable-navigator-content-utils"; - // Handles URL requests by NPAPI plugins through the renderer. const char kDisableDirectNPAPIRequests[] = "disable-direct-npapi-requests"; diff --git a/content/public/common/content_switches.h b/content/public/common/content_switches.h index 6480de5..9928ade 100644 --- a/content/public/common/content_switches.h +++ b/content/public/common/content_switches.h @@ -71,7 +71,6 @@ extern const char kDisableKillAfterBadIPC[]; CONTENT_EXPORT extern const char kDisableLocalStorage[]; CONTENT_EXPORT extern const char kDisableLogging[]; CONTENT_EXPORT extern const char kDisableMediaSource[]; -extern const char kDisableNavigatorContentUtils[]; extern const char kDisablePepper3d[]; CONTENT_EXPORT extern const char kDisablePinch[]; CONTENT_EXPORT extern const char kDisablePlugins[]; |