| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 | 213 |
| 214 // Enable gpu-accelerated 2d canvas. | 214 // Enable gpu-accelerated 2d canvas. |
| 215 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; | 215 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; |
| 216 | 216 |
| 217 // Enable hardware accelerated page painting. | 217 // Enable hardware accelerated page painting. |
| 218 const char kEnableAcceleratedPainting[] = "enable-accelerated-painting"; | 218 const char kEnableAcceleratedPainting[] = "enable-accelerated-painting"; |
| 219 | 219 |
| 220 // Enable gpu-accelerated SVG/W3C filters. | 220 // Enable gpu-accelerated SVG/W3C filters. |
| 221 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; | 221 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; |
| 222 | 222 |
| 223 // Enables WebKit accessibility within the renderer process. | |
| 224 const char kEnableAccessibility[] = "enable-accessibility"; | |
| 225 | |
| 226 // Turns on extremely verbose logging of accessibility events. | 223 // Turns on extremely verbose logging of accessibility events. |
| 227 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 224 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
| 228 | 225 |
| 229 // Turns on the browser plugin. | 226 // Turns on the browser plugin. |
| 230 const char kEnableBrowserPlugin[] = "enable-browser-plugin"; | 227 const char kEnableBrowserPlugin[] = "enable-browser-plugin"; |
| 231 | 228 |
| 232 // Enables the creation of compositing layers for fixed position elements. | 229 // Enables the creation of compositing layers for fixed position elements. |
| 233 const char kEnableCompositingForFixedPosition[] = | 230 const char kEnableCompositingForFixedPosition[] = |
| 234 "enable-fixed-position-compositing"; | 231 "enable-fixed-position-compositing"; |
| 235 | 232 |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; | 658 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; |
| 662 | 659 |
| 663 // Maximum time between mousedown and mouseup to be considered a tap. | 660 // Maximum time between mousedown and mouseup to be considered a tap. |
| 664 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; | 661 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; |
| 665 | 662 |
| 666 // Forces usage of the test compositor. Needed to run ui tests on bots. | 663 // Forces usage of the test compositor. Needed to run ui tests on bots. |
| 667 extern const char kTestCompositor[] = "test-compositor"; | 664 extern const char kTestCompositor[] = "test-compositor"; |
| 668 #endif | 665 #endif |
| 669 | 666 |
| 670 } // namespace switches | 667 } // namespace switches |
| OLD | NEW |