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

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

Issue 1016033006: Enable BeginFrame scheduling on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable BeginFrame scheduling under flag Created 5 years, 7 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
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 // Enables LCD text. 290 // Enables LCD text.
291 const char kEnableLCDText[] = "enable-lcd-text"; 291 const char kEnableLCDText[] = "enable-lcd-text";
292 292
293 // Enables using signed distance fields when rendering text. 293 // Enables using signed distance fields when rendering text.
294 // Only valid if GPU rasterization is enabled as well. 294 // Only valid if GPU rasterization is enabled as well.
295 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; 295 const char kEnableDistanceFieldText[] = "enable-distance-field-text";
296 296
297 // Enable the experimental Credential Manager JavaScript API. 297 // Enable the experimental Credential Manager JavaScript API.
298 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; 298 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api";
299 299
300 // Use a BeginFrame signal from browser to renderer to schedule rendering.
301 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling";
302
303 // Enable the creation of compositing layers when it would prevent LCD text. 300 // Enable the creation of compositing layers when it would prevent LCD text.
304 const char kEnablePreferCompositingToLCDText[] = 301 const char kEnablePreferCompositingToLCDText[] =
305 "enable-prefer-compositing-to-lcd-text"; 302 "enable-prefer-compositing-to-lcd-text";
306 303
307 // Disable one or more Blink runtime-enabled features. 304 // Disable one or more Blink runtime-enabled features.
308 // Use names from RuntimeEnabledFeatures.in, separated by commas. 305 // Use names from RuntimeEnabledFeatures.in, separated by commas.
309 // Applied before kDisableBlinkFeatures, and after other flags that change these 306 // Applied before kDisableBlinkFeatures, and after other flags that change these
310 // features. 307 // features.
311 const char kEnableBlinkFeatures[] = "enable-blink-features"; 308 const char kEnableBlinkFeatures[] = "enable-blink-features";
312 309
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
1002 // Windows Vista and later. 999 // Windows Vista and later.
1003 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1000 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1004 #endif 1001 #endif
1005 1002
1006 // Enables the use of NPAPI plugins. 1003 // Enables the use of NPAPI plugins.
1007 const char kEnableNpapi[] = "enable-npapi"; 1004 const char kEnableNpapi[] = "enable-npapi";
1008 1005
1009 // Don't dump stuff here, follow the same order as the header. 1006 // Don't dump stuff here, follow the same order as the header.
1010 1007
1011 } // namespace switches 1008 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698