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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 // | 235 // |
236 // TODO(kkania): Rename this to enable-renderer-automation after moving the | 236 // TODO(kkania): Rename this to enable-renderer-automation after moving the |
237 // |DOMAutomationController| to the |AutomationRenderViewHelper|. | 237 // |DOMAutomationController| to the |AutomationRenderViewHelper|. |
238 const char kDomAutomationController[] = "dom-automation"; | 238 const char kDomAutomationController[] = "dom-automation"; |
239 | 239 |
240 // Loosen security. Needed for tests using some of the functionality of | 240 // Loosen security. Needed for tests using some of the functionality of |
241 // |DOMAutomationController|. | 241 // |DOMAutomationController|. |
242 const char kReduceSecurityForDomAutomationTests[] = | 242 const char kReduceSecurityForDomAutomationTests[] = |
243 "reduce-security-for-dom-automation-tests"; | 243 "reduce-security-for-dom-automation-tests"; |
244 | 244 |
| 245 // Make the software compositor paint directly from impl-side-painting |
| 246 // SkPictures to the final canvas instead of going through tiles. |
| 247 const char kEnableTileFreeSoftwareCompositing[] = |
| 248 "enable-tile-free-software-compositing"; |
| 249 |
245 // Enable hardware accelerated page painting. | 250 // Enable hardware accelerated page painting. |
246 const char kEnableAcceleratedPainting[] = "enable-accelerated-painting"; | 251 const char kEnableAcceleratedPainting[] = "enable-accelerated-painting"; |
247 | 252 |
248 // Enable gpu-accelerated SVG/W3C filters. | 253 // Enable gpu-accelerated SVG/W3C filters. |
249 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; | 254 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; |
250 | 255 |
251 // Turns on extremely verbose logging of accessibility events. | 256 // Turns on extremely verbose logging of accessibility events. |
252 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 257 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
253 | 258 |
254 // Enables browser plugin compositing experiment. | 259 // Enables browser plugin compositing experiment. |
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 // Enables or disables history navigation in response to horizontal overscroll. | 783 // Enables or disables history navigation in response to horizontal overscroll. |
779 // Set the value to '1' to enable the feature, and set to '0' to disable. | 784 // Set the value to '1' to enable the feature, and set to '0' to disable. |
780 // Defaults to enabled. | 785 // Defaults to enabled. |
781 const char kOverscrollHistoryNavigation[] = | 786 const char kOverscrollHistoryNavigation[] = |
782 "overscroll-history-navigation"; | 787 "overscroll-history-navigation"; |
783 | 788 |
784 // Enables 'image/webp' accept header for image requests. | 789 // Enables 'image/webp' accept header for image requests. |
785 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; | 790 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; |
786 | 791 |
787 } // namespace switches | 792 } // namespace switches |
OLD | NEW |