Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: content/child/runtime_features.cc

Issue 837363002: Removing --disable-application-cache flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/child/runtime_features.h" 5 #include "content/child/runtime_features.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/metrics/field_trial.h" 8 #include "base/metrics/field_trial.h"
9 #include "content/common/content_switches_internal.h" 9 #include "content/common/content_switches_internal.h"
10 #include "content/public/common/content_switches.h" 10 #include "content/public/common/content_switches.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 void SetRuntimeFeaturesDefaultsAndUpdateFromArgs( 82 void SetRuntimeFeaturesDefaultsAndUpdateFromArgs(
83 const base::CommandLine& command_line) { 83 const base::CommandLine& command_line) {
84 if (command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures)) 84 if (command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures))
85 WebRuntimeFeatures::enableExperimentalFeatures(true); 85 WebRuntimeFeatures::enableExperimentalFeatures(true);
86 86
87 SetRuntimeFeatureDefaultsForPlatform(); 87 SetRuntimeFeatureDefaultsForPlatform();
88 88
89 if (command_line.HasSwitch(switches::kDisableDatabases)) 89 if (command_line.HasSwitch(switches::kDisableDatabases))
90 WebRuntimeFeatures::enableDatabase(false); 90 WebRuntimeFeatures::enableDatabase(false);
91 91
92 if (command_line.HasSwitch(switches::kDisableApplicationCache))
93 WebRuntimeFeatures::enableApplicationCache(false);
94
95 if (command_line.HasSwitch(switches::kDisableBlinkScheduler)) 92 if (command_line.HasSwitch(switches::kDisableBlinkScheduler))
96 WebRuntimeFeatures::enableBlinkScheduler(false); 93 WebRuntimeFeatures::enableBlinkScheduler(false);
97 94
98 if (command_line.HasSwitch(switches::kDisableLocalStorage)) 95 if (command_line.HasSwitch(switches::kDisableLocalStorage))
99 WebRuntimeFeatures::enableLocalStorage(false); 96 WebRuntimeFeatures::enableLocalStorage(false);
100 97
101 if (command_line.HasSwitch(switches::kDisableSessionStorage)) 98 if (command_line.HasSwitch(switches::kDisableSessionStorage))
102 WebRuntimeFeatures::enableSessionStorage(false); 99 WebRuntimeFeatures::enableSessionStorage(false);
103 100
104 if (command_line.HasSwitch(switches::kDisableMediaSource)) 101 if (command_line.HasSwitch(switches::kDisableMediaSource))
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 177
181 if (command_line.HasSwitch(switches::kDisableSVG1DOM)) { 178 if (command_line.HasSwitch(switches::kDisableSVG1DOM)) {
182 WebRuntimeFeatures::enableSVG1DOM(false); 179 WebRuntimeFeatures::enableSVG1DOM(false);
183 } 180 }
184 181
185 if (command_line.HasSwitch(switches::kReducedReferrerGranularity)) 182 if (command_line.HasSwitch(switches::kReducedReferrerGranularity))
186 WebRuntimeFeatures::enableReducedReferrerGranularity(true); 183 WebRuntimeFeatures::enableReducedReferrerGranularity(true);
187 } 184 }
188 185
189 } // namespace content 186 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698