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

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

Issue 678763007: Add --enable-slimming-paint command line flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix copying from ipc Created 6 years, 1 month 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') | content/public/common/web_preferences.h » ('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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; 421 const char kEnableSandboxLogging[] = "enable-sandbox-logging";
422 422
423 // Enables seccomp-bpf support for Android. Requires experimental kernel 423 // Enables seccomp-bpf support for Android. Requires experimental kernel
424 // support. <http://crbug.com/166704> 424 // support. <http://crbug.com/166704>
425 const char kEnableSeccompFilterSandbox[] = 425 const char kEnableSeccompFilterSandbox[] =
426 "enable-seccomp-filter-sandbox"; 426 "enable-seccomp-filter-sandbox";
427 427
428 // Enables the Skia benchmarking extension 428 // Enables the Skia benchmarking extension
429 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; 429 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking";
430 430
431 // Enables slimming paint: http://www.chromium.org/blink/slimming-paint
432 const char kEnableSlimmingPaint[] = "enable-slimming-paint";
433
431 // On platforms that support it, enables smooth scroll animation. 434 // On platforms that support it, enables smooth scroll animation.
432 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; 435 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling";
433 436
434 // Enable spatial navigation 437 // Enable spatial navigation
435 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; 438 const char kEnableSpatialNavigation[] = "enable-spatial-navigation";
436 439
437 // Enables StatsTable, logging statistics to a global named shared memory table. 440 // Enables StatsTable, logging statistics to a global named shared memory table.
438 const char kEnableStatsTable[] = "enable-stats-table"; 441 const char kEnableStatsTable[] = "enable-stats-table";
439 442
440 // Experimentally ensures that each renderer process: 443 // Experimentally ensures that each renderer process:
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
968 #endif 971 #endif
969 972
970 #if defined(ENABLE_PLUGINS) 973 #if defined(ENABLE_PLUGINS)
971 // Enables the plugin power saver feature. 974 // Enables the plugin power saver feature.
972 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; 975 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
973 #endif 976 #endif
974 977
975 // Don't dump stuff here, follow the same order as the header. 978 // Don't dump stuff here, follow the same order as the header.
976 979
977 } // namespace switches 980 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/public/common/web_preferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698