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

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

Issue 227593007: Add an --enable-container-culling commandline flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/web_preferences.cc » ('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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 "enable-accelerated-overflow-scroll"; 357 "enable-accelerated-overflow-scroll";
358 358
359 // Enables LCD text. 359 // Enables LCD text.
360 const char kEnableLCDText[] = "enable-lcd-text"; 360 const char kEnableLCDText[] = "enable-lcd-text";
361 361
362 // Enables experimental feature that maps multiple RenderLayers to 362 // Enables experimental feature that maps multiple RenderLayers to
363 // one composited layer to avoid pathological layer counts. 363 // one composited layer to avoid pathological layer counts.
364 const char kEnableLayerSquashing[] = 364 const char kEnableLayerSquashing[] =
365 "enable-layer-squashing"; 365 "enable-layer-squashing";
366 366
367 // Enable experimental container node culling.
368 const char kEnableContainerCulling[] = "enable-container-culling";
369
367 // Turns on extremely verbose logging of accessibility events. 370 // Turns on extremely verbose logging of accessibility events.
368 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; 371 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging";
369 372
370 // Use a BeginImplFrame signal from browser to renderer to schedule rendering. 373 // Use a BeginImplFrame signal from browser to renderer to schedule rendering.
371 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; 374 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling";
372 375
373 // Enables browser plugin for all types of pages. 376 // Enables browser plugin for all types of pages.
374 const char kEnableBrowserPluginForAllViewTypes[] = 377 const char kEnableBrowserPluginForAllViewTypes[] =
375 "enable-browser-plugin-for-all-view-types"; 378 "enable-browser-plugin-for-all-view-types";
376 379
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 1039
1037 // Disables support for Core Animation plugins. This is triggered when 1040 // Disables support for Core Animation plugins. This is triggered when
1038 // accelerated compositing is disabled. See http://crbug.com/122430 . 1041 // accelerated compositing is disabled. See http://crbug.com/122430 .
1039 const char kDisableCoreAnimationPlugins[] = 1042 const char kDisableCoreAnimationPlugins[] =
1040 "disable-core-animation-plugins"; 1043 "disable-core-animation-plugins";
1041 #endif 1044 #endif
1042 1045
1043 // Don't dump stuff here, follow the same order as the header. 1046 // Don't dump stuff here, follow the same order as the header.
1044 1047
1045 } // namespace switches 1048 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/web_preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698