| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 // automated testing. | 245 // automated testing. |
| 246 const char kDisableDefaultApps[] = "disable-default-apps"; | 246 const char kDisableDefaultApps[] = "disable-default-apps"; |
| 247 | 247 |
| 248 // Disables device discovery notifications. | 248 // Disables device discovery notifications. |
| 249 const char kDisableDeviceDiscoveryNotifications[] = | 249 const char kDisableDeviceDiscoveryNotifications[] = |
| 250 "disable-device-discovery-notifications"; | 250 "disable-device-discovery-notifications"; |
| 251 | 251 |
| 252 // Disables Domain Reliability Monitoring. | 252 // Disables Domain Reliability Monitoring. |
| 253 const char kDisableDomainReliability[] = "disable-domain-reliability"; | 253 const char kDisableDomainReliability[] = "disable-domain-reliability"; |
| 254 | 254 |
| 255 // Disable download notification. | |
| 256 const char kDisableDownloadNotification[] = "disable-download-notification"; | |
| 257 | |
| 258 // Disable extensions. | 255 // Disable extensions. |
| 259 const char kDisableExtensions[] = "disable-extensions"; | 256 const char kDisableExtensions[] = "disable-extensions"; |
| 260 | 257 |
| 261 // Disable checking for user opt-in for extensions that want to inject script | 258 // Disable checking for user opt-in for extensions that want to inject script |
| 262 // into file URLs (ie, always allow it). This is used during automated testing. | 259 // into file URLs (ie, always allow it). This is used during automated testing. |
| 263 const char kDisableExtensionsFileAccessCheck[] = | 260 const char kDisableExtensionsFileAccessCheck[] = |
| 264 "disable-extensions-file-access-check"; | 261 "disable-extensions-file-access-check"; |
| 265 | 262 |
| 266 // Disable the net::URLRequestThrottlerManager functionality for | 263 // Disable the net::URLRequestThrottlerManager functionality for |
| 267 // requests originating from extensions. | 264 // requests originating from extensions. |
| (...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 | 1374 |
| 1378 // ----------------------------------------------------------------------------- | 1375 // ----------------------------------------------------------------------------- |
| 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1380 // | 1377 // |
| 1381 // You were going to just dump your switches here, weren't you? Instead, please | 1378 // You were going to just dump your switches here, weren't you? Instead, please |
| 1382 // put them in alphabetical order above, or in order inside the appropriate | 1379 // put them in alphabetical order above, or in order inside the appropriate |
| 1383 // ifdef at the bottom. The order should match the header. | 1380 // ifdef at the bottom. The order should match the header. |
| 1384 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
| 1385 | 1382 |
| 1386 } // namespace switches | 1383 } // namespace switches |
| OLD | NEW |