| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 // performance tests where these pages may interfere with perf results. | 229 // performance tests where these pages may interfere with perf results. |
| 230 const char kDisableComponentExtensionsWithBackgroundPages[] = | 230 const char kDisableComponentExtensionsWithBackgroundPages[] = |
| 231 "disable-component-extensions-with-background-pages"; | 231 "disable-component-extensions-with-background-pages"; |
| 232 | 232 |
| 233 const char kDisableComponentUpdate[] = "disable-component-update"; | 233 const char kDisableComponentUpdate[] = "disable-component-update"; |
| 234 | 234 |
| 235 // Disables installation of default apps on first run. This is used during | 235 // Disables installation of default apps on first run. This is used during |
| 236 // automated testing. | 236 // automated testing. |
| 237 const char kDisableDefaultApps[] = "disable-default-apps"; | 237 const char kDisableDefaultApps[] = "disable-default-apps"; |
| 238 | 238 |
| 239 // Disables device discovery. | |
| 240 const char kDisableDeviceDiscovery[] = "disable-device-discovery"; | |
| 241 | |
| 242 // Disables device discovery notifications. | 239 // Disables device discovery notifications. |
| 243 const char kDisableDeviceDiscoveryNotifications[] = | 240 const char kDisableDeviceDiscoveryNotifications[] = |
| 244 "disable-device-discovery-notifications"; | 241 "disable-device-discovery-notifications"; |
| 245 | 242 |
| 246 // Disables Domain Reliability Monitoring. | 243 // Disables Domain Reliability Monitoring. |
| 247 const char kDisableDomainReliability[] = "disable-domain-reliability"; | 244 const char kDisableDomainReliability[] = "disable-domain-reliability"; |
| 248 | 245 |
| 249 // Disable extensions. | 246 // Disable extensions. |
| 250 const char kDisableExtensions[] = "disable-extensions"; | 247 const char kDisableExtensions[] = "disable-extensions"; |
| 251 | 248 |
| (...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 | 1358 |
| 1362 // ----------------------------------------------------------------------------- | 1359 // ----------------------------------------------------------------------------- |
| 1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1360 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1364 // | 1361 // |
| 1365 // You were going to just dump your switches here, weren't you? Instead, please | 1362 // You were going to just dump your switches here, weren't you? Instead, please |
| 1366 // put them in alphabetical order above, or in order inside the appropriate | 1363 // put them in alphabetical order above, or in order inside the appropriate |
| 1367 // ifdef at the bottom. The order should match the header. | 1364 // ifdef at the bottom. The order should match the header. |
| 1368 // ----------------------------------------------------------------------------- | 1365 // ----------------------------------------------------------------------------- |
| 1369 | 1366 |
| 1370 } // namespace switches | 1367 } // namespace switches |
| OLD | NEW |