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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 | 164 |
165 // Disable False Start in SSL and TLS connections. | 165 // Disable False Start in SSL and TLS connections. |
166 const char kDisableSSLFalseStart[] = "disable-ssl-false-start"; | 166 const char kDisableSSLFalseStart[] = "disable-ssl-false-start"; |
167 | 167 |
168 // Disable smooth scrolling for testing. | 168 // Disable smooth scrolling for testing. |
169 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; | 169 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; |
170 | 170 |
171 // Disable the seccomp sandbox (Linux only) | 171 // Disable the seccomp sandbox (Linux only) |
172 const char kDisableSeccompSandbox[] = "disable-seccomp-sandbox"; | 172 const char kDisableSeccompSandbox[] = "disable-seccomp-sandbox"; |
173 | 173 |
| 174 // Disable the seccomp filter sandbox (Linux only) |
| 175 const char kDisableSeccompFilterSandbox[] = "disable-seccomp-filter-sandbox"; |
| 176 |
174 // Disable session storage. | 177 // Disable session storage. |
175 const char kDisableSessionStorage[] = "disable-session-storage"; | 178 const char kDisableSessionStorage[] = "disable-session-storage"; |
176 | 179 |
177 // Enable shared workers. Functionality not yet complete. | 180 // Enable shared workers. Functionality not yet complete. |
178 const char kDisableSharedWorkers[] = "disable-shared-workers"; | 181 const char kDisableSharedWorkers[] = "disable-shared-workers"; |
179 | 182 |
180 // Disables site-specific tailoring to compatibility issues in WebKit. | 183 // Disables site-specific tailoring to compatibility issues in WebKit. |
181 const char kDisableSiteSpecificQuirks[] = "disable-site-specific-quirks"; | 184 const char kDisableSiteSpecificQuirks[] = "disable-site-specific-quirks"; |
182 | 185 |
183 // Disables speech input. | 186 // Disables speech input. |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; | 661 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; |
659 | 662 |
660 // Maximum time between mousedown and mouseup to be considered a tap. | 663 // Maximum time between mousedown and mouseup to be considered a tap. |
661 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; | 664 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; |
662 | 665 |
663 // Forces usage of the test compositor. Needed to run ui tests on bots. | 666 // Forces usage of the test compositor. Needed to run ui tests on bots. |
664 extern const char kTestCompositor[] = "test-compositor"; | 667 extern const char kTestCompositor[] = "test-compositor"; |
665 #endif | 668 #endif |
666 | 669 |
667 } // namespace switches | 670 } // namespace switches |
OLD | NEW |