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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 | 289 |
290 // Disables speech input. | 290 // Disables speech input. |
291 const char kDisableSpeechInput[] = "disable-speech-input"; | 291 const char kDisableSpeechInput[] = "disable-speech-input"; |
292 | 292 |
293 // Disable False Start in SSL and TLS connections. | 293 // Disable False Start in SSL and TLS connections. |
294 const char kDisableSSLFalseStart[] = "disable-ssl-false-start"; | 294 const char kDisableSSLFalseStart[] = "disable-ssl-false-start"; |
295 | 295 |
296 // Disable multithreaded GPU compositing of web content. | 296 // Disable multithreaded GPU compositing of web content. |
297 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; | 297 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; |
298 | 298 |
299 // Disables the threaded HTML parser in Blink | |
300 const char kDisableThreadedHTMLParser[] = "disable-threaded-html-parser"; | |
301 | |
302 // Disable accelerated overflow scrolling in corner cases (that would not be | 299 // Disable accelerated overflow scrolling in corner cases (that would not be |
303 // handled by enable-accelerated-overflow-scroll). | 300 // handled by enable-accelerated-overflow-scroll). |
304 const char kDisableUniversalAcceleratedOverflowScroll[] = | 301 const char kDisableUniversalAcceleratedOverflowScroll[] = |
305 "disable-universal-accelerated-overflow-scroll"; | 302 "disable-universal-accelerated-overflow-scroll"; |
306 | 303 |
307 // Don't enforce the same-origin policy. (Used by people testing their sites.) | 304 // Don't enforce the same-origin policy. (Used by people testing their sites.) |
308 const char kDisableWebSecurity[] = "disable-web-security"; | 305 const char kDisableWebSecurity[] = "disable-web-security"; |
309 | 306 |
310 // Disables support for XSLT. | 307 // Disables support for XSLT. |
311 const char kDisableXSLT[] = "disable-xslt"; | 308 const char kDisableXSLT[] = "disable-xslt"; |
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1019 | 1016 |
1020 // Disables support for Core Animation plugins. This is triggered when | 1017 // Disables support for Core Animation plugins. This is triggered when |
1021 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1018 // accelerated compositing is disabled. See http://crbug.com/122430 . |
1022 const char kDisableCoreAnimationPlugins[] = | 1019 const char kDisableCoreAnimationPlugins[] = |
1023 "disable-core-animation-plugins"; | 1020 "disable-core-animation-plugins"; |
1024 #endif | 1021 #endif |
1025 | 1022 |
1026 // Don't dump stuff here, follow the same order as the header. | 1023 // Don't dump stuff here, follow the same order as the header. |
1027 | 1024 |
1028 } // namespace switches | 1025 } // namespace switches |
OLD | NEW |