| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 #if defined(OS_ANDROID) | 286 #if defined(OS_ANDROID) |
| 287 extern const char kAuthAndroidNegotiateAccountType[]; | 287 extern const char kAuthAndroidNegotiateAccountType[]; |
| 288 extern const char kDisableAppLink[]; | 288 extern const char kDisableAppLink[]; |
| 289 extern const char kDisableContextualSearch[]; | 289 extern const char kDisableContextualSearch[]; |
| 290 extern const char kDisableVrShell[]; | 290 extern const char kDisableVrShell[]; |
| 291 extern const char kEnableAccessibilityTabSwitcher[]; | 291 extern const char kEnableAccessibilityTabSwitcher[]; |
| 292 extern const char kEnableAppLink[]; | 292 extern const char kEnableAppLink[]; |
| 293 extern const char kEnableContextualSearch[]; | 293 extern const char kEnableContextualSearch[]; |
| 294 extern const char kEnableHostedMode[]; | 294 extern const char kEnableHostedMode[]; |
| 295 extern const char kEnableHungRendererInfoBar[]; | 295 extern const char kEnableHungRendererInfoBar[]; |
| 296 extern const char kEnableTabSwitcherInDocumentMode[]; | |
| 297 extern const char kEnableTabSwitcherThemeColors[]; | 296 extern const char kEnableTabSwitcherThemeColors[]; |
| 298 extern const char kEnableVrShell[]; | 297 extern const char kEnableVrShell[]; |
| 299 extern const char kEnableWebApk[]; | 298 extern const char kEnableWebApk[]; |
| 300 extern const char kForceShowUpdateMenuBadge[]; | 299 extern const char kForceShowUpdateMenuBadge[]; |
| 301 extern const char kForceShowUpdateMenuItem[]; | 300 extern const char kForceShowUpdateMenuItem[]; |
| 302 extern const char kForceShowUpdateMenuItemCustomSummary[]; | 301 extern const char kForceShowUpdateMenuItemCustomSummary[]; |
| 303 extern const char kForceShowUpdateMenuItemNewFeaturesSummary[]; | 302 extern const char kForceShowUpdateMenuItemNewFeaturesSummary[]; |
| 304 extern const char kForceShowUpdateMenuItemSummary[]; | 303 extern const char kForceShowUpdateMenuItemSummary[]; |
| 305 extern const char kMarketUrlForTesting[]; | 304 extern const char kMarketUrlForTesting[]; |
| 306 extern const char kNtpSwitchToExistingTab[]; | 305 extern const char kNtpSwitchToExistingTab[]; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 #if defined(OS_CHROMEOS) | 396 #if defined(OS_CHROMEOS) |
| 398 bool PowerOverlayEnabled(); | 397 bool PowerOverlayEnabled(); |
| 399 #endif | 398 #endif |
| 400 | 399 |
| 401 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 402 // alphabetical order, or in one of the ifdefs (also in order in each section). | 401 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 403 | 402 |
| 404 } // namespace switches | 403 } // namespace switches |
| 405 | 404 |
| 406 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |