OLD | NEW |
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 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 // Turns on the browser plugin. | 226 // Turns on the browser plugin. |
227 const char kEnableBrowserPlugin[] = "enable-browser-plugin"; | 227 const char kEnableBrowserPlugin[] = "enable-browser-plugin"; |
228 | 228 |
229 // Enables the creation of compositing layers for fixed position elements. | 229 // Enables the creation of compositing layers for fixed position elements. |
230 const char kEnableCompositingForFixedPosition[] = | 230 const char kEnableCompositingForFixedPosition[] = |
231 "enable-fixed-position-compositing"; | 231 "enable-fixed-position-compositing"; |
232 | 232 |
233 // Enable deferred 2d canvas rendering. | 233 // Enable deferred 2d canvas rendering. |
234 const char kEnableDeferred2dCanvas[] = "enable-deferred-2d-canvas"; | 234 const char kEnableDeferred2dCanvas[] = "enable-deferred-2d-canvas"; |
235 | 235 |
236 // Enables compositing to texture instead of display. | |
237 const char kEnableCompositeToTexture[] = "enable-composite-to-texture"; | |
238 | |
239 // Enables CSS3 regions | 236 // Enables CSS3 regions |
240 const char kEnableCssRegions[] = "enable-css-regions"; | 237 const char kEnableCssRegions[] = "enable-css-regions"; |
241 | 238 |
242 // Enables CSS3 custom filters | 239 // Enables CSS3 custom filters |
243 const char kEnableCssShaders[] = "enable-css-shaders"; | 240 const char kEnableCssShaders[] = "enable-css-shaders"; |
244 | 241 |
245 // Enables device motion events. | 242 // Enables device motion events. |
246 const char kEnableDeviceMotion[] = "enable-device-motion"; | 243 const char kEnableDeviceMotion[] = "enable-device-motion"; |
247 | 244 |
248 // Enables the fastback page cache. | 245 // Enables the fastback page cache. |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; | 660 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; |
664 | 661 |
665 // Maximum time between mousedown and mouseup to be considered a tap. | 662 // Maximum time between mousedown and mouseup to be considered a tap. |
666 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; | 663 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; |
667 | 664 |
668 // Forces usage of the test compositor. Needed to run ui tests on bots. | 665 // Forces usage of the test compositor. Needed to run ui tests on bots. |
669 extern const char kTestCompositor[] = "test-compositor"; | 666 extern const char kTestCompositor[] = "test-compositor"; |
670 #endif | 667 #endif |
671 | 668 |
672 } // namespace switches | 669 } // namespace switches |
OLD | NEW |