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

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

Issue 775143003: cc: Implement unified BeginFrame on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move common logic to DelegatedFrameHost Created 6 years 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 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; 307 const char kEnableDistanceFieldText[] = "enable-distance-field-text";
308 308
309 // Enables experimental feature that maps multiple RenderLayers to 309 // Enables experimental feature that maps multiple RenderLayers to
310 // one composited layer to avoid pathological layer counts. 310 // one composited layer to avoid pathological layer counts.
311 const char kEnableLayerSquashing[] = 311 const char kEnableLayerSquashing[] =
312 "enable-layer-squashing"; 312 "enable-layer-squashing";
313 313
314 // Enable the experimental Credential Manager JavaScript API. 314 // Enable the experimental Credential Manager JavaScript API.
315 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; 315 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api";
316 316
317 // Use a BeginFrame signal from browser to renderer to schedule rendering.
318 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling";
319
320 // Enable the creation of compositing layers when it would prevent LCD text. 317 // Enable the creation of compositing layers when it would prevent LCD text.
321 const char kEnablePreferCompositingToLCDText[] = 318 const char kEnablePreferCompositingToLCDText[] =
322 "enable-prefer-compositing-to-lcd-text"; 319 "enable-prefer-compositing-to-lcd-text";
323 320
324 // PlzNavigate: Use the experimental browser-side navigation path. 321 // PlzNavigate: Use the experimental browser-side navigation path.
325 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; 322 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation";
326 323
327 // Enable/Disable the creation of compositing layers for RenderLayers with a 324 // Enable/Disable the creation of compositing layers for RenderLayers with a
328 // transition on a property that supports accelerated animation (that is, 325 // transition on a property that supports accelerated animation (that is,
329 // opacity, -webkit-transform, and -webkit-filter), even when no animation is 326 // opacity, -webkit-transform, and -webkit-filter), even when no animation is
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 #endif 991 #endif
995 992
996 #if defined(ENABLE_PLUGINS) 993 #if defined(ENABLE_PLUGINS)
997 // Enables the plugin power saver feature. 994 // Enables the plugin power saver feature.
998 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; 995 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
999 #endif 996 #endif
1000 997
1001 // Don't dump stuff here, follow the same order as the header. 998 // Don't dump stuff here, follow the same order as the header.
1002 999
1003 } // namespace switches 1000 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698