| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 const char kDisableComponentUpdate[] = "disable-component-update"; | 234 const char kDisableComponentUpdate[] = "disable-component-update"; |
| 235 | 235 |
| 236 // Disables installation of default apps on first run. This is used during | 236 // Disables installation of default apps on first run. This is used during |
| 237 // automated testing. | 237 // automated testing. |
| 238 const char kDisableDefaultApps[] = "disable-default-apps"; | 238 const char kDisableDefaultApps[] = "disable-default-apps"; |
| 239 | 239 |
| 240 // Disables device discovery notifications. | 240 // Disables device discovery notifications. |
| 241 const char kDisableDeviceDiscoveryNotifications[] = | 241 const char kDisableDeviceDiscoveryNotifications[] = |
| 242 "disable-device-discovery-notifications"; | 242 "disable-device-discovery-notifications"; |
| 243 | 243 |
| 244 // Disables the dinosaur easter egg on the offline interstitial. |
| 245 const char kDisableDinosaurEasterEgg[] = "disable-dinosaur-easter-egg"; |
| 246 |
| 244 // Disables Domain Reliability Monitoring. | 247 // Disables Domain Reliability Monitoring. |
| 245 const char kDisableDomainReliability[] = "disable-domain-reliability"; | 248 const char kDisableDomainReliability[] = "disable-domain-reliability"; |
| 246 | 249 |
| 247 // Disable extensions. | 250 // Disable extensions. |
| 248 const char kDisableExtensions[] = "disable-extensions"; | 251 const char kDisableExtensions[] = "disable-extensions"; |
| 249 | 252 |
| 250 // Disable checking for user opt-in for extensions that want to inject script | 253 // Disable checking for user opt-in for extensions that want to inject script |
| 251 // into file URLs (ie, always allow it). This is used during automated testing. | 254 // into file URLs (ie, always allow it). This is used during automated testing. |
| 252 const char kDisableExtensionsFileAccessCheck[] = | 255 const char kDisableExtensionsFileAccessCheck[] = |
| 253 "disable-extensions-file-access-check"; | 256 "disable-extensions-file-access-check"; |
| (...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 | 1394 |
| 1392 // ----------------------------------------------------------------------------- | 1395 // ----------------------------------------------------------------------------- |
| 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1394 // | 1397 // |
| 1395 // You were going to just dump your switches here, weren't you? Instead, please | 1398 // You were going to just dump your switches here, weren't you? Instead, please |
| 1396 // put them in alphabetical order above, or in order inside the appropriate | 1399 // put them in alphabetical order above, or in order inside the appropriate |
| 1397 // ifdef at the bottom. The order should match the header. | 1400 // ifdef at the bottom. The order should match the header. |
| 1398 // ----------------------------------------------------------------------------- | 1401 // ----------------------------------------------------------------------------- |
| 1399 | 1402 |
| 1400 } // namespace switches | 1403 } // namespace switches |
| OLD | NEW |