| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 // This is expected to break compatibility with many pages for now. | 246 // This is expected to break compatibility with many pages for now. |
| 247 const char kEnableStrictSiteIsolation[] = "enable-strict-site-isolation"; | 247 const char kEnableStrictSiteIsolation[] = "enable-strict-site-isolation"; |
| 248 | 248 |
| 249 // Enable multithreaded GPU compositing of web content. | 249 // Enable multithreaded GPU compositing of web content. |
| 250 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; | 250 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; |
| 251 | 251 |
| 252 // Enable use of experimental TCP sockets API for sending data in the | 252 // Enable use of experimental TCP sockets API for sending data in the |
| 253 // SYN packet. | 253 // SYN packet. |
| 254 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 254 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
| 255 | 255 |
| 256 // Enable support for JavaScript touch events. | |
| 257 const char kEnableTouchEvents[] = "enable-touch-events"; | |
| 258 | |
| 259 // Enables support for fullscreen video. Current implementation is | 256 // Enables support for fullscreen video. Current implementation is |
| 260 // incomplete and this flag is used for development and testing. | 257 // incomplete and this flag is used for development and testing. |
| 261 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; | 258 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; |
| 262 | 259 |
| 263 // Enables video logging where video elements log playback performance data to | 260 // Enables video logging where video elements log playback performance data to |
| 264 // the debug log. | 261 // the debug log. |
| 265 const char kEnableVideoLogging[] = "enable-video-logging"; | 262 const char kEnableVideoLogging[] = "enable-video-logging"; |
| 266 | 263 |
| 267 // Enables support for video tracks. Current implementation is | 264 // Enables support for video tracks. Current implementation is |
| 268 // incomplete and this flag is used for development and testing. | 265 // incomplete and this flag is used for development and testing. |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 // instead of NSS for SSL. | 541 // instead of NSS for SSL. |
| 545 const char kUseSystemSSL[] = "use-system-ssl"; | 542 const char kUseSystemSSL[] = "use-system-ssl"; |
| 546 #endif | 543 #endif |
| 547 | 544 |
| 548 #if !defined(OFFICIAL_BUILD) | 545 #if !defined(OFFICIAL_BUILD) |
| 549 // Causes the renderer process to throw an assertion on launch. | 546 // Causes the renderer process to throw an assertion on launch. |
| 550 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 547 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 551 #endif | 548 #endif |
| 552 | 549 |
| 553 } // namespace switches | 550 } // namespace switches |
| OLD | NEW |