| 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 // Defines the shared command-line switches used by code in the Chrome | 5 // Defines the shared command-line switches used by code in the Chrome |
| 6 // directory that don't have anywhere more specific to go. | 6 // directory that don't have anywhere more specific to go. |
| 7 | 7 |
| 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 9 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 extern const char kCrashOnHangThreads[]; | 59 extern const char kCrashOnHangThreads[]; |
| 60 extern const char kCreateBrowserOnStartupForTests[]; | 60 extern const char kCreateBrowserOnStartupForTests[]; |
| 61 extern const char kDebugEnableFrameToggle[]; | 61 extern const char kDebugEnableFrameToggle[]; |
| 62 extern const char kDebugPackedApps[]; | 62 extern const char kDebugPackedApps[]; |
| 63 extern const char kDevToolsFlags[]; | 63 extern const char kDevToolsFlags[]; |
| 64 extern const char kDiagnostics[]; | 64 extern const char kDiagnostics[]; |
| 65 extern const char kDiagnosticsFormat[]; | 65 extern const char kDiagnosticsFormat[]; |
| 66 extern const char kDiagnosticsRecovery[]; | 66 extern const char kDiagnosticsRecovery[]; |
| 67 extern const char kDisableAboutInSettings[]; | 67 extern const char kDisableAboutInSettings[]; |
| 68 extern const char kDisableAddToShelf[]; | 68 extern const char kDisableAddToShelf[]; |
| 69 extern const char kDisableAsyncDns[]; | |
| 70 extern const char kDisableBackgroundNetworking[]; | 69 extern const char kDisableBackgroundNetworking[]; |
| 71 extern const char kDisableBundledPpapiFlash[]; | 70 extern const char kDisableBundledPpapiFlash[]; |
| 72 extern const char kDisableCastStreamingHWEncoding[]; | 71 extern const char kDisableCastStreamingHWEncoding[]; |
| 73 extern const char kDisableChildAccountDetection[]; | 72 extern const char kDisableChildAccountDetection[]; |
| 74 extern const char kDisableClearBrowsingDataCounters[]; | 73 extern const char kDisableClearBrowsingDataCounters[]; |
| 75 extern const char kDisableClientSidePhishingDetection[]; | 74 extern const char kDisableClientSidePhishingDetection[]; |
| 76 extern const char kDisableComponentExtensionsWithBackgroundPages[]; | 75 extern const char kDisableComponentExtensionsWithBackgroundPages[]; |
| 77 extern const char kDisableComponentUpdate[]; | 76 extern const char kDisableComponentUpdate[]; |
| 78 extern const char kDisableDefaultApps[]; | 77 extern const char kDisableDefaultApps[]; |
| 79 extern const char kDisableDeviceDiscoveryNotifications[]; | 78 extern const char kDisableDeviceDiscoveryNotifications[]; |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 #if defined(OS_CHROMEOS) | 404 #if defined(OS_CHROMEOS) |
| 406 bool PowerOverlayEnabled(); | 405 bool PowerOverlayEnabled(); |
| 407 #endif | 406 #endif |
| 408 | 407 |
| 409 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 410 // alphabetical order, or in one of the ifdefs (also in order in each section). | 409 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 411 | 410 |
| 412 } // namespace switches | 411 } // namespace switches |
| 413 | 412 |
| 414 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |