| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 // SYN packet. | 256 // SYN packet. |
| 257 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 257 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
| 258 | 258 |
| 259 // Enable support for JavaScript touch events. | 259 // Enable support for JavaScript touch events. |
| 260 const char kEnableTouchEvents[] = "enable-touch-events"; | 260 const char kEnableTouchEvents[] = "enable-touch-events"; |
| 261 | 261 |
| 262 // Enables support for fullscreen video. Current implementation is | 262 // Enables support for fullscreen video. Current implementation is |
| 263 // incomplete and this flag is used for development and testing. | 263 // incomplete and this flag is used for development and testing. |
| 264 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; | 264 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; |
| 265 | 265 |
| 266 // Enables video logging where video elements log playback performance data to | |
| 267 // the debug log. | |
| 268 const char kEnableVideoLogging[] = "enable-video-logging"; | |
| 269 | |
| 270 // Enables support for video tracks. Current implementation is | 266 // Enables support for video tracks. Current implementation is |
| 271 // incomplete and this flag is used for development and testing. | 267 // incomplete and this flag is used for development and testing. |
| 272 const char kEnableVideoTrack[] = "enable-video-track"; | 268 const char kEnableVideoTrack[] = "enable-video-track"; |
| 273 | 269 |
| 274 // Enable Web Intents. | 270 // Enable Web Intents. |
| 275 const char kEnableWebIntents[] = "enable-web-intents"; | 271 const char kEnableWebIntents[] = "enable-web-intents"; |
| 276 | 272 |
| 277 // Enables experimental features for the geolocation API. | 273 // Enables experimental features for the geolocation API. |
| 278 // Current features: | 274 // Current features: |
| 279 // - CoreLocation support for Mac OS X 10.6 | 275 // - CoreLocation support for Mac OS X 10.6 |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 // instead of NSS for SSL. | 543 // instead of NSS for SSL. |
| 548 const char kUseSystemSSL[] = "use-system-ssl"; | 544 const char kUseSystemSSL[] = "use-system-ssl"; |
| 549 #endif | 545 #endif |
| 550 | 546 |
| 551 #if !defined(OFFICIAL_BUILD) | 547 #if !defined(OFFICIAL_BUILD) |
| 552 // Causes the renderer process to throw an assertion on launch. | 548 // Causes the renderer process to throw an assertion on launch. |
| 553 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 549 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 554 #endif | 550 #endif |
| 555 | 551 |
| 556 } // namespace switches | 552 } // namespace switches |
| OLD | NEW |