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

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

Issue 1130043003: [Sketch] CC Animations: Torpedo the old intrusive animation system. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@implscroll
Patch Set: Delete more (headers and animation_registrar_ leftover) 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 // Has no effect unless GPU rasterization is enabled. 281 // Has no effect unless GPU rasterization is enabled.
282 const char kDisableAcceleratedJpegDecoding[] = 282 const char kDisableAcceleratedJpegDecoding[] =
283 "disable-accelerated-jpeg-decoding"; 283 "disable-accelerated-jpeg-decoding";
284 284
285 // Enable bleeding-edge code to make Chrome draw content faster. The changes 285 // Enable bleeding-edge code to make Chrome draw content faster. The changes
286 // behind this path are very likely to break lots of content. 286 // behind this path are very likely to break lots of content.
287 // ** DO NOT use this flag unless you know what you are doing. ** 287 // ** DO NOT use this flag unless you know what you are doing. **
288 const char kEnableBleedingEdgeRenderingFastPaths[] = 288 const char kEnableBleedingEdgeRenderingFastPaths[] =
289 "enable-bleeding-edge-rendering-fast-paths"; 289 "enable-bleeding-edge-rendering-fast-paths";
290 290
291 // Enables new cc/animation system (Project Heaviside). crbug.com/394772
292 const char kEnableCompositorAnimationTimelines[] =
293 "enable-compositor-animation-timelines";
294
295 // Enables LCD text. 291 // Enables LCD text.
296 const char kEnableLCDText[] = "enable-lcd-text"; 292 const char kEnableLCDText[] = "enable-lcd-text";
297 293
298 // Enables using signed distance fields when rendering text. 294 // Enables using signed distance fields when rendering text.
299 // Only valid if GPU rasterization is enabled as well. 295 // Only valid if GPU rasterization is enabled as well.
300 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; 296 const char kEnableDistanceFieldText[] = "enable-distance-field-text";
301 297
302 // Enable the experimental Credential Manager JavaScript API. 298 // Enable the experimental Credential Manager JavaScript API.
303 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; 299 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api";
304 300
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 // Windows Vista and later. 987 // Windows Vista and later.
992 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 988 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
993 #endif 989 #endif
994 990
995 // Enables the use of NPAPI plugins. 991 // Enables the use of NPAPI plugins.
996 const char kEnableNpapi[] = "enable-npapi"; 992 const char kEnableNpapi[] = "enable-npapi";
997 993
998 // 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.
999 995
1000 } // namespace switches 996 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/gpu/render_widget_compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698