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

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

Issue 236313006: cc: Add initial GPU-to-GPU copy rasterizer implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
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 // Defines all the "content" command-line switches. 5 // Defines all the "content" command-line switches.
6 6
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; 96 CONTENT_EXPORT extern const char kDisableSmoothScrolling[];
97 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; 97 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[];
98 CONTENT_EXPORT extern const char kDisableSpeechInput[]; 98 CONTENT_EXPORT extern const char kDisableSpeechInput[];
99 CONTENT_EXPORT extern const char kDisableSSLFalseStart[]; 99 CONTENT_EXPORT extern const char kDisableSSLFalseStart[];
100 CONTENT_EXPORT extern const char kDisableThreadedCompositing[]; 100 CONTENT_EXPORT extern const char kDisableThreadedCompositing[];
101 CONTENT_EXPORT extern const char kDisableThreadedHTMLParser[]; 101 CONTENT_EXPORT extern const char kDisableThreadedHTMLParser[];
102 CONTENT_EXPORT extern const char kDisableUniversalAcceleratedOverflowScroll[]; 102 CONTENT_EXPORT extern const char kDisableUniversalAcceleratedOverflowScroll[];
103 CONTENT_EXPORT extern const char kDisableWebSecurity[]; 103 CONTENT_EXPORT extern const char kDisableWebSecurity[];
104 extern const char kDisableXSLT[]; 104 extern const char kDisableXSLT[];
105 extern const char kDisableXSSAuditor[]; 105 extern const char kDisableXSSAuditor[];
106 CONTENT_EXPORT extern const char kDisableZeroCopy[];
106 CONTENT_EXPORT extern const char kDomAutomationController[]; 107 CONTENT_EXPORT extern const char kDomAutomationController[];
107 CONTENT_EXPORT extern const char kEnableBleedingEdgeRenderingFastPaths[]; 108 CONTENT_EXPORT extern const char kEnableBleedingEdgeRenderingFastPaths[];
108 CONTENT_EXPORT extern const char kEnableDeferredFilters[]; 109 CONTENT_EXPORT extern const char kEnableDeferredFilters[];
109 CONTENT_EXPORT extern const char kEnableAcceleratedFixedRootBackground[]; 110 CONTENT_EXPORT extern const char kEnableAcceleratedFixedRootBackground[];
110 CONTENT_EXPORT extern const char kEnableAcceleratedOverflowScroll[]; 111 CONTENT_EXPORT extern const char kEnableAcceleratedOverflowScroll[];
111 CONTENT_EXPORT extern const char kEnableLayerSquashing[]; 112 CONTENT_EXPORT extern const char kEnableLayerSquashing[];
112 CONTENT_EXPORT extern const char kEnableContainerCulling[]; 113 CONTENT_EXPORT extern const char kEnableContainerCulling[];
113 extern const char kEnableAccessibilityLogging[]; 114 extern const char kEnableAccessibilityLogging[];
114 CONTENT_EXPORT extern const char kEnableBeginFrameScheduling[]; 115 CONTENT_EXPORT extern const char kEnableBeginFrameScheduling[];
115 CONTENT_EXPORT extern const char kEnableBrowserPluginForAllViewTypes[]; 116 CONTENT_EXPORT extern const char kEnableBrowserPluginForAllViewTypes[];
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 extern const char kEnableCarbonInterposing[]; 304 extern const char kEnableCarbonInterposing[];
304 extern const char kDisableCoreAnimationPlugins[]; 305 extern const char kDisableCoreAnimationPlugins[];
305 #endif 306 #endif
306 307
307 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 308 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
308 // alphabetical order, or in one of the ifdefs (also in order in each section). 309 // alphabetical order, or in one of the ifdefs (also in order in each section).
309 310
310 } // namespace switches 311 } // namespace switches
311 312
312 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 313 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698