| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 extern const char kDisableMinimizeOnSecondLauncherItemClick[]; | 85 extern const char kDisableMinimizeOnSecondLauncherItemClick[]; |
| 86 extern const char kDisableNewBookmarkApps[]; | 86 extern const char kDisableNewBookmarkApps[]; |
| 87 extern const char kDisableOfflineAutoReload[]; | 87 extern const char kDisableOfflineAutoReload[]; |
| 88 extern const char kDisableOfflineAutoReloadVisibleOnly[]; | 88 extern const char kDisableOfflineAutoReloadVisibleOnly[]; |
| 89 extern const char kDisablePermissionActionReporting[]; | 89 extern const char kDisablePermissionActionReporting[]; |
| 90 extern const char kDisablePopupBlocking[]; | 90 extern const char kDisablePopupBlocking[]; |
| 91 extern const char kDisablePrintPreview[]; | 91 extern const char kDisablePrintPreview[]; |
| 92 extern const char kDisablePromptOnRepost[]; | 92 extern const char kDisablePromptOnRepost[]; |
| 93 extern const char kDisablePushApiBackgroundMode[]; | 93 extern const char kDisablePushApiBackgroundMode[]; |
| 94 extern const char kDisableQuic[]; | 94 extern const char kDisableQuic[]; |
| 95 extern const char kDisableSearchGeolocationDisclosure[]; |
| 95 extern const char kDisableSettingsWindow[]; | 96 extern const char kDisableSettingsWindow[]; |
| 96 extern const char kDisableWebNotificationCustomLayouts[]; | 97 extern const char kDisableWebNotificationCustomLayouts[]; |
| 97 extern const char kDisableZeroBrowsersOpenForTests[]; | 98 extern const char kDisableZeroBrowsersOpenForTests[]; |
| 98 extern const char kDiskCacheDir[]; | 99 extern const char kDiskCacheDir[]; |
| 99 extern const char kDiskCacheSize[]; | 100 extern const char kDiskCacheSize[]; |
| 100 extern const char kDnsLogDetails[]; | 101 extern const char kDnsLogDetails[]; |
| 101 extern const char kDumpBrowserHistograms[]; | 102 extern const char kDumpBrowserHistograms[]; |
| 102 extern const char kEasyUnlockAppPath[]; | 103 extern const char kEasyUnlockAppPath[]; |
| 103 extern const char kEnableAddToShelf[]; | 104 extern const char kEnableAddToShelf[]; |
| 104 extern const char kEnableAudioDebugRecordingsFromExtension[]; | 105 extern const char kEnableAudioDebugRecordingsFromExtension[]; |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 #if defined(OS_WIN) | 368 #if defined(OS_WIN) |
| 368 bool GDITextPrintingEnabled(); | 369 bool GDITextPrintingEnabled(); |
| 369 #endif | 370 #endif |
| 370 | 371 |
| 371 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 372 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 372 // alphabetical order, or in one of the ifdefs (also in order in each section). | 373 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 373 | 374 |
| 374 } // namespace switches | 375 } // namespace switches |
| 375 | 376 |
| 376 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 377 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |