| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 #endif // defined(GOOGLE_CHROME_BUILD) | 249 #endif // defined(GOOGLE_CHROME_BUILD) |
| 250 | 250 |
| 251 #if !defined(GOOGLE_CHROME_BUILD) | 251 #if !defined(GOOGLE_CHROME_BUILD) |
| 252 extern const char kLocalNtpReload[]; | 252 extern const char kLocalNtpReload[]; |
| 253 #endif | 253 #endif |
| 254 | 254 |
| 255 #if defined(OS_ANDROID) | 255 #if defined(OS_ANDROID) |
| 256 extern const char kAuthAndroidNegotiateAccountType[]; | 256 extern const char kAuthAndroidNegotiateAccountType[]; |
| 257 extern const char kDisableAppLink[]; | 257 extern const char kDisableAppLink[]; |
| 258 extern const char kDisableContextualSearch[]; | 258 extern const char kDisableContextualSearch[]; |
| 259 extern const char kDisableVrShell[]; | |
| 260 extern const char kEnableAccessibilityTabSwitcher[]; | 259 extern const char kEnableAccessibilityTabSwitcher[]; |
| 261 extern const char kEnableAppLink[]; | 260 extern const char kEnableAppLink[]; |
| 262 extern const char kEnableContextualSearch[]; | 261 extern const char kEnableContextualSearch[]; |
| 263 extern const char kEnableContextualSearchContextualCardsBarIntegration[]; | 262 extern const char kEnableContextualSearchContextualCardsBarIntegration[]; |
| 264 extern const char kEnableHostedMode[]; | 263 extern const char kEnableHostedMode[]; |
| 265 extern const char kEnableHungRendererInfoBar[]; | 264 extern const char kEnableHungRendererInfoBar[]; |
| 266 extern const char kEnableVrShell[]; | |
| 267 extern const char kForceShowUpdateMenuBadge[]; | 265 extern const char kForceShowUpdateMenuBadge[]; |
| 268 extern const char kForceShowUpdateMenuItem[]; | 266 extern const char kForceShowUpdateMenuItem[]; |
| 269 extern const char kForceShowUpdateMenuItemCustomSummary[]; | 267 extern const char kForceShowUpdateMenuItemCustomSummary[]; |
| 270 extern const char kForceShowUpdateMenuItemNewFeaturesSummary[]; | 268 extern const char kForceShowUpdateMenuItemNewFeaturesSummary[]; |
| 271 extern const char kForceShowUpdateMenuItemSummary[]; | 269 extern const char kForceShowUpdateMenuItemSummary[]; |
| 272 extern const char kMarketUrlForTesting[]; | 270 extern const char kMarketUrlForTesting[]; |
| 273 extern const char kNtpSwitchToExistingTab[]; | 271 extern const char kNtpSwitchToExistingTab[]; |
| 274 extern const char kProgressBarAnimation[]; | 272 extern const char kProgressBarAnimation[]; |
| 275 extern const char kTabManagementExperimentTypeDisabled[]; | 273 extern const char kTabManagementExperimentTypeDisabled[]; |
| 276 extern const char kTabManagementExperimentTypeElderberry[]; | 274 extern const char kTabManagementExperimentTypeElderberry[]; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 #if defined(OS_WIN) | 365 #if defined(OS_WIN) |
| 368 bool GDITextPrintingEnabled(); | 366 bool GDITextPrintingEnabled(); |
| 369 #endif | 367 #endif |
| 370 | 368 |
| 371 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 369 // 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). | 370 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 373 | 371 |
| 374 } // namespace switches | 372 } // namespace switches |
| 375 | 373 |
| 376 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 374 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |