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

Side by Side Diff: content/public/common/content_switches.cc

Issue 577943002: Add a commandline flag for disabling the SVG 1 DOM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 2 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 // For tests, disable single thread scheduler and only manually composite. 241 // For tests, disable single thread scheduler and only manually composite.
242 const char kDisableSingleThreadProxyScheduler[] = 242 const char kDisableSingleThreadProxyScheduler[] =
243 "disable-single-thread-proxy-scheduler"; 243 "disable-single-thread-proxy-scheduler";
244 244
245 // Disable smooth scrolling for testing. 245 // Disable smooth scrolling for testing.
246 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; 246 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling";
247 247
248 // Disables the use of a 3D software rasterizer. 248 // Disables the use of a 3D software rasterizer.
249 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; 249 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer";
250 250
251 // Disables SVG 1.1 DOM.
252 const char kDisableSVG1DOM[] = "disable-svg1dom";
253
251 // Disable multithreaded GPU compositing of web content. 254 // Disable multithreaded GPU compositing of web content.
252 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; 255 const char kDisableThreadedCompositing[] = "disable-threaded-compositing";
253 256
254 // Disable multithreaded, compositor scrolling of web content. 257 // Disable multithreaded, compositor scrolling of web content.
255 const char kDisableThreadedScrolling[] = "disable-threaded-scrolling"; 258 const char kDisableThreadedScrolling[] = "disable-threaded-scrolling";
256 259
257 // Disable V8 idle notification after commit. 260 // Disable V8 idle notification after commit.
258 // Overrides kEnableV8IdleNotificationAfterCommit. 261 // Overrides kEnableV8IdleNotificationAfterCommit.
259 const char kDisableV8IdleNotificationAfterCommit[] = 262 const char kDisableV8IdleNotificationAfterCommit[] =
260 "disable-v8-idle-notification-after-commit"; 263 "disable-v8-idle-notification-after-commit";
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
965 #endif 968 #endif
966 969
967 #if defined(ENABLE_PLUGINS) 970 #if defined(ENABLE_PLUGINS)
968 // Enables the plugin power saver feature. 971 // Enables the plugin power saver feature.
969 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; 972 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
970 #endif 973 #endif
971 974
972 // Don't dump stuff here, follow the same order as the header. 975 // Don't dump stuff here, follow the same order as the header.
973 976
974 } // namespace switches 977 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698