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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 extern const char kEnableNewBookmarkApps[]; | 130 extern const char kEnableNewBookmarkApps[]; |
131 extern const char kEnableNTPPopularSites[]; | 131 extern const char kEnableNTPPopularSites[]; |
132 extern const char kEnableNTPSearchEngineCountryDetection[]; | 132 extern const char kEnableNTPSearchEngineCountryDetection[]; |
133 extern const char kEnableOfflineAutoReload[]; | 133 extern const char kEnableOfflineAutoReload[]; |
134 extern const char kEnableOfflineAutoReloadVisibleOnly[]; | 134 extern const char kEnableOfflineAutoReloadVisibleOnly[]; |
135 extern const char kEnablePanels[]; | 135 extern const char kEnablePanels[]; |
136 extern const char kEnablePdfMaterialUI[]; | 136 extern const char kEnablePdfMaterialUI[]; |
137 extern const char kEnablePotentiallyAnnoyingSecurityFeatures[]; | 137 extern const char kEnablePotentiallyAnnoyingSecurityFeatures[]; |
138 extern const char kEnablePowerOverlay[]; | 138 extern const char kEnablePowerOverlay[]; |
139 extern const char kEnablePrintPreviewRegisterPromos[]; | 139 extern const char kEnablePrintPreviewRegisterPromos[]; |
140 extern const char kEnablePrivetV3[]; | |
141 extern const char kEnableProfiling[]; | 140 extern const char kEnableProfiling[]; |
142 extern const char kEnablePushApiBackgroundMode[]; | 141 extern const char kEnablePushApiBackgroundMode[]; |
143 extern const char kEnableQuic[]; | 142 extern const char kEnableQuic[]; |
144 extern const char kEnableQuicPortSelection[]; | 143 extern const char kEnableQuicPortSelection[]; |
145 extern const char kEnableAlternativeServices[]; | 144 extern const char kEnableAlternativeServices[]; |
146 extern const char kEnableSessionCrashedBubble[]; | 145 extern const char kEnableSessionCrashedBubble[]; |
147 extern const char kEnableSettingsWindow[]; | 146 extern const char kEnableSettingsWindow[]; |
148 extern const char kDisableSettingsWindow[]; | 147 extern const char kDisableSettingsWindow[]; |
149 extern const char kEnableSimplifiedFullscreenUI[]; | 148 extern const char kEnableSimplifiedFullscreenUI[]; |
150 extern const char kDisableSimplifiedFullscreenUI[]; | 149 extern const char kDisableSimplifiedFullscreenUI[]; |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 #if defined(ENABLE_TASK_MANAGER) | 409 #if defined(ENABLE_TASK_MANAGER) |
411 bool NewTaskManagerEnabled(); | 410 bool NewTaskManagerEnabled(); |
412 #endif // defined(ENABLE_TASK_MANAGER) | 411 #endif // defined(ENABLE_TASK_MANAGER) |
413 | 412 |
414 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 413 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
415 // alphabetical order, or in one of the ifdefs (also in order in each section). | 414 // alphabetical order, or in one of the ifdefs (also in order in each section). |
416 | 415 |
417 } // namespace switches | 416 } // namespace switches |
418 | 417 |
419 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 418 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |