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

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

Issue 1452353002: Turn off computation of the interest rect in cc in synchronized paint mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 // support. <http://crbug.com/166704> 430 // support. <http://crbug.com/166704>
431 const char kEnableSeccompFilterSandbox[] = 431 const char kEnableSeccompFilterSandbox[] =
432 "enable-seccomp-filter-sandbox"; 432 "enable-seccomp-filter-sandbox";
433 433
434 // Enables the Skia benchmarking extension 434 // Enables the Skia benchmarking extension
435 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; 435 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking";
436 436
437 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint 437 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint
438 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; 438 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2";
439 439
440 // Enables painting of Blink content from within the Blink document lifecycle
441 // instead of on-request from the compositor.
442 const char kEnableBlinkSynchronizedPainting[] =
443 "enable-blink-synchronized-painting";
444
440 // On platforms that support it, enables smooth scroll animation. 445 // On platforms that support it, enables smooth scroll animation.
441 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; 446 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling";
442 447
443 // Enable spatial navigation 448 // Enable spatial navigation
444 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; 449 const char kEnableSpatialNavigation[] = "enable-spatial-navigation";
445 450
446 // Enables StatsTable, logging statistics to a global named shared memory table. 451 // Enables StatsTable, logging statistics to a global named shared memory table.
447 const char kEnableStatsTable[] = "enable-stats-table"; 452 const char kEnableStatsTable[] = "enable-stats-table";
448 453
449 // Blocks all insecure requests from secure contexts, and prevents the user 454 // Blocks all insecure requests from secure contexts, and prevents the user
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 987 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
983 988
984 // Enables the exporting of the tracing events to ETW. This is only supported on 989 // Enables the exporting of the tracing events to ETW. This is only supported on
985 // Windows Vista and later. 990 // Windows Vista and later.
986 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 991 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
987 #endif 992 #endif
988 993
989 // Don't dump stuff here, follow the same order as the header. 994 // Don't dump stuff here, follow the same order as the header.
990 995
991 } // namespace switches 996 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698