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

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

Issue 2612323002: Add --disable-slimming-paint-invalidation (Closed)
Patch Set: Alphabetize Created 3 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
« 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 #include "media/media_features.h" 7 #include "media/media_features.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 276
277 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only). 277 // Disable the seccomp filter sandbox (seccomp-bpf) (Linux only).
278 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; 278 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox";
279 279
280 // Disable the setuid sandbox (Linux only). 280 // Disable the setuid sandbox (Linux only).
281 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox"; 281 const char kDisableSetuidSandbox[] = "disable-setuid-sandbox";
282 282
283 // Disable shared workers. 283 // Disable shared workers.
284 const char kDisableSharedWorkers[] = "disable-shared-workers"; 284 const char kDisableSharedWorkers[] = "disable-shared-workers";
285 285
286 // Disable paint invalidation based on slimming paint.
287 // See kEnableSlimmingPaintInvalidation.
288 const char kDisableSlimmingPaintInvalidation[] =
289 "disable-slimming-paint-invalidation";
290
286 // Disable smooth scrolling for testing. 291 // Disable smooth scrolling for testing.
287 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; 292 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling";
288 293
289 // Disables the use of a 3D software rasterizer. 294 // Disables the use of a 3D software rasterizer.
290 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; 295 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer";
291 296
292 // Disables the Web Speech API. 297 // Disables the Web Speech API.
293 const char kDisableSpeechAPI[] = "disable-speech-api"; 298 const char kDisableSpeechAPI[] = "disable-speech-api";
294 299
295 // Disable multithreaded GPU compositing of web content. 300 // Disable multithreaded GPU compositing of web content.
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 // Cause the OS X sandbox write to syslog every time an access to a resource 462 // Cause the OS X sandbox write to syslog every time an access to a resource
458 // is denied by the sandbox. 463 // is denied by the sandbox.
459 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; 464 const char kEnableSandboxLogging[] = "enable-sandbox-logging";
460 465
461 // Enables the Skia benchmarking extension 466 // Enables the Skia benchmarking extension
462 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; 467 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking";
463 468
464 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint 469 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint
465 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; 470 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2";
466 471
467 // Enables paint invalidation based on slimming paint but without the full 472 // Enables paint invalidation based on slimming paint but without
468 // slimming paint v2 compositing code. See: https://goo.gl/eQczQW 473 // the full slimming paint v2 compositing code. See: https://goo.gl/eQczQW
469 const char kEnableSlimmingPaintInvalidation[] = 474 const char kEnableSlimmingPaintInvalidation[] =
470 "enable-slimming-paint-invalidation"; 475 "enable-slimming-paint-invalidation";
471 476
472 // On platforms that support it, enables smooth scroll animation. 477 // On platforms that support it, enables smooth scroll animation.
473 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; 478 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling";
474 479
475 // Enable spatial navigation 480 // Enable spatial navigation
476 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; 481 const char kEnableSpatialNavigation[] = "enable-spatial-navigation";
477 482
478 // Enables StatsTable, logging statistics to a global named shared memory table. 483 // Enables StatsTable, logging statistics to a global named shared memory table.
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 // the given directory. Used primarily to gather samples for IPC fuzzing. 1092 // the given directory. Used primarily to gather samples for IPC fuzzing.
1088 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1093 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1089 1094
1090 // Specifies the testcase used by the IPC fuzzer. 1095 // Specifies the testcase used by the IPC fuzzer.
1091 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1096 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1092 #endif 1097 #endif
1093 1098
1094 // Don't dump stuff here, follow the same order as the header. 1099 // Don't dump stuff here, follow the same order as the header.
1095 1100
1096 } // namespace switches 1101 } // 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