| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 | 311 |
| 312 // Enables delegated renderer. | 312 // Enables delegated renderer. |
| 313 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; | 313 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; |
| 314 | 314 |
| 315 // Enables device motion events. | 315 // Enables device motion events. |
| 316 const char kEnableDeviceMotion[] = "enable-device-motion"; | 316 const char kEnableDeviceMotion[] = "enable-device-motion"; |
| 317 | 317 |
| 318 // Enables restarting interrupted downloads. | 318 // Enables restarting interrupted downloads. |
| 319 const char kEnableDownloadResumption[] = "enable-download-resumption"; | 319 const char kEnableDownloadResumption[] = "enable-download-resumption"; |
| 320 | 320 |
| 321 #if defined(OS_CHROMEOS) |
| 322 // Enables hardware-encoded screen capture. |
| 323 const char kEnableEncodedScreenCapture[] = "enable-encoded-screen-capture"; |
| 324 #endif |
| 325 |
| 321 // Enables WebKit features that are in development. | 326 // Enables WebKit features that are in development. |
| 322 const char kEnableExperimentalWebKitFeatures[] = | 327 const char kEnableExperimentalWebKitFeatures[] = |
| 323 "enable-experimental-webkit-features"; | 328 "enable-experimental-webkit-features"; |
| 324 | 329 |
| 325 // Enables the CSS multicol implementation that uses the regions implementation. | 330 // Enables the CSS multicol implementation that uses the regions implementation. |
| 326 const char kEnableRegionBasedColumns[] = | 331 const char kEnableRegionBasedColumns[] = |
| 327 "enable-region-based-columns"; | 332 "enable-region-based-columns"; |
| 328 | 333 |
| 329 // Disables the threaded HTML parser in WebKit | 334 // Disables the threaded HTML parser in WebKit |
| 330 const char kDisableThreadedHTMLParser[] = "disable-threaded-html-parser"; | 335 const char kDisableThreadedHTMLParser[] = "disable-threaded-html-parser"; |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 const char kOverscrollHistoryNavigation[] = | 860 const char kOverscrollHistoryNavigation[] = |
| 856 "overscroll-history-navigation"; | 861 "overscroll-history-navigation"; |
| 857 | 862 |
| 858 // Forward overscroll event data from the renderer to the browser. | 863 // Forward overscroll event data from the renderer to the browser. |
| 859 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; | 864 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; |
| 860 | 865 |
| 861 // Enables WebGL extensions not yet approved by the community. | 866 // Enables WebGL extensions not yet approved by the community. |
| 862 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 867 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 863 | 868 |
| 864 } // namespace switches | 869 } // namespace switches |
| OLD | NEW |