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