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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
295 // Disables the custom JumpList on Windows 7. | 295 // Disables the custom JumpList on Windows 7. |
296 const char kDisableCustomJumpList[] = "disable-custom-jumplist"; | 296 const char kDisableCustomJumpList[] = "disable-custom-jumplist"; |
297 | 297 |
298 // Disables installation of default apps on first run. This is used during | 298 // Disables installation of default apps on first run. This is used during |
299 // automated testing. | 299 // automated testing. |
300 const char kDisableDefaultApps[] = "disable-default-apps"; | 300 const char kDisableDefaultApps[] = "disable-default-apps"; |
301 | 301 |
302 // Disables retrieval of PAC URLs from DHCP as per the WPAD standard. | 302 // Disables retrieval of PAC URLs from DHCP as per the WPAD standard. |
303 const char kDisableDhcpWpad[] = "disable-dhcp-wpad"; | 303 const char kDisableDhcpWpad[] = "disable-dhcp-wpad"; |
304 | 304 |
305 const char kDisableDownloadShelf[] = "disable-download-shelf"; | |
asanka
2013/07/24 20:09:57
Nit: It seems the convention here is to line up th
| |
306 | |
305 // Disable extensions. | 307 // Disable extensions. |
306 const char kDisableExtensions[] = "disable-extensions"; | 308 const char kDisableExtensions[] = "disable-extensions"; |
307 | 309 |
308 // Disable checking for user opt-in for extensions that want to inject script | 310 // Disable checking for user opt-in for extensions that want to inject script |
309 // into file URLs (ie, always allow it). This is used during automated testing. | 311 // into file URLs (ie, always allow it). This is used during automated testing. |
310 const char kDisableExtensionsFileAccessCheck[] = | 312 const char kDisableExtensionsFileAccessCheck[] = |
311 "disable-extensions-file-access-check"; | 313 "disable-extensions-file-access-check"; |
312 | 314 |
313 // Disable the net::URLRequestThrottlerManager functionality for | 315 // Disable the net::URLRequestThrottlerManager functionality for |
314 // requests originating from extensions. | 316 // requests originating from extensions. |
(...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1564 | 1566 |
1565 // ----------------------------------------------------------------------------- | 1567 // ----------------------------------------------------------------------------- |
1566 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1568 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1567 // | 1569 // |
1568 // You were going to just dump your switches here, weren't you? Instead, please | 1570 // You were going to just dump your switches here, weren't you? Instead, please |
1569 // put them in alphabetical order above, or in order inside the appropriate | 1571 // put them in alphabetical order above, or in order inside the appropriate |
1570 // ifdef at the bottom. The order should match the header. | 1572 // ifdef at the bottom. The order should match the header. |
1571 // ----------------------------------------------------------------------------- | 1573 // ----------------------------------------------------------------------------- |
1572 | 1574 |
1573 } // namespace switches | 1575 } // namespace switches |
OLD | NEW |