summaryrefslogtreecommitdiffstats
path: root/content/public
diff options
context:
space:
mode:
authorjsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-20 23:50:19 +0000
committerjsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-20 23:50:19 +0000
commit24d25add171d211f74633821b61f02615b981949 (patch)
tree23b3a51e2d1828175aef7fc89448d499dd73d097 /content/public
parent9332044293a666d077a214b735a31ba9f3debed7 (diff)
downloadchromium_src-24d25add171d211f74633821b61f02615b981949.zip
chromium_src-24d25add171d211f74633821b61f02615b981949.tar.gz
chromium_src-24d25add171d211f74633821b61f02615b981949.tar.bz2
Remove --enable-service-worker flag
Now the --experimental-web-platform-features flag solely controls whether Service Worker is web-exposed. This lets us remove a virtual test suite and also exposes more of SW to perf and crash monitoring before actually shipping. This is a clone of https://codereview.chromium.org/339973003/ by falken@ with a trivial browsertest fix. BUG=365201 TBR=falken,michaeln,jam,kalman Review URL: https://codereview.chromium.org/348843003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278868 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r--content/public/common/content_switches.cc4
-rw-r--r--content/public/common/content_switches.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index f10bed1..48a4291 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -487,10 +487,6 @@ const char kEnableStatsTable[] = "enable-stats-table";
// cookies on cross-site requests.
const char kEnableStrictSiteIsolation[] = "enable-strict-site-isolation";
-// Enable support for ServiceWorker. See
-// https://github.com/slightlyoff/ServiceWorker for more information.
-const char kEnableServiceWorker[] = "enable-service-worker";
-
// Enable support for sync events in ServiceWorkers.
const char kEnableServiceWorkerSync[] = "enable-service-worker-sync";
diff --git a/content/public/common/content_switches.h b/content/public/common/content_switches.h
index 6b7042a..baef48f 100644
--- a/content/public/common/content_switches.h
+++ b/content/public/common/content_switches.h
@@ -139,7 +139,6 @@ CONTENT_EXPORT extern const char kEnableSpatialNavigation[];
CONTENT_EXPORT extern const char kEnableSpeechSynthesis[];
CONTENT_EXPORT extern const char kEnableStatsTable[];
extern const char kEnableStrictSiteIsolation[];
-CONTENT_EXPORT extern const char kEnableServiceWorker[];
CONTENT_EXPORT extern const char kEnableServiceWorkerSync[];
CONTENT_EXPORT extern const char kEnableTargetedStyleRecalc[];
CONTENT_EXPORT extern const char kEnableTcpFastOpen[];