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 |
256 // Enables support for fullscreen video. Current implementation is | 259 // Enables support for fullscreen video. Current implementation is |
257 // incomplete and this flag is used for development and testing. | 260 // incomplete and this flag is used for development and testing. |
258 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; | 261 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; |
259 | 262 |
260 // Enables video logging where video elements log playback performance data to | 263 // Enables video logging where video elements log playback performance data to |
261 // the debug log. | 264 // the debug log. |
262 const char kEnableVideoLogging[] = "enable-video-logging"; | 265 const char kEnableVideoLogging[] = "enable-video-logging"; |
263 | 266 |
264 // Enables support for video tracks. Current implementation is | 267 // Enables support for video tracks. Current implementation is |
265 // incomplete and this flag is used for development and testing. | 268 // incomplete and this flag is used for development and testing. |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 // instead of NSS for SSL. | 518 // instead of NSS for SSL. |
516 const char kUseSystemSSL[] = "use-system-ssl"; | 519 const char kUseSystemSSL[] = "use-system-ssl"; |
517 #endif | 520 #endif |
518 | 521 |
519 #if !defined(OFFICIAL_BUILD) | 522 #if !defined(OFFICIAL_BUILD) |
520 // Causes the renderer process to throw an assertion on launch. | 523 // Causes the renderer process to throw an assertion on launch. |
521 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 524 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
522 #endif | 525 #endif |
523 | 526 |
524 } // namespace switches | 527 } // namespace switches |
OLD | NEW |