| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 #if defined(GOOGLE_CHROME_BUILD) | 245 #if defined(GOOGLE_CHROME_BUILD) |
| 246 extern const char kEnableGoogleBrandedContextMenu[]; | 246 extern const char kEnableGoogleBrandedContextMenu[]; |
| 247 #endif // defined(GOOGLE_CHROME_BUILD) | 247 #endif // defined(GOOGLE_CHROME_BUILD) |
| 248 | 248 |
| 249 #if !defined(GOOGLE_CHROME_BUILD) | 249 #if !defined(GOOGLE_CHROME_BUILD) |
| 250 extern const char kLocalNtpReload[]; | 250 extern const char kLocalNtpReload[]; |
| 251 #endif | 251 #endif |
| 252 | 252 |
| 253 #if defined(OS_ANDROID) | 253 #if defined(OS_ANDROID) |
| 254 extern const char kAuthAndroidNegotiateAccountType[]; | 254 extern const char kAuthAndroidNegotiateAccountType[]; |
| 255 extern const char kDisableAppLink[]; | |
| 256 extern const char kDisableContextualSearch[]; | 255 extern const char kDisableContextualSearch[]; |
| 257 extern const char kEnableAccessibilityTabSwitcher[]; | 256 extern const char kEnableAccessibilityTabSwitcher[]; |
| 258 extern const char kEnableAppLink[]; | |
| 259 extern const char kEnableContextualSearch[]; | 257 extern const char kEnableContextualSearch[]; |
| 260 extern const char kEnableContextualSearchContextualCardsBarIntegration[]; | 258 extern const char kEnableContextualSearchContextualCardsBarIntegration[]; |
| 261 extern const char kEnableHostedMode[]; | 259 extern const char kEnableHostedMode[]; |
| 262 extern const char kEnableHungRendererInfoBar[]; | 260 extern const char kEnableHungRendererInfoBar[]; |
| 263 extern const char kForceShowUpdateMenuBadge[]; | 261 extern const char kForceShowUpdateMenuBadge[]; |
| 264 extern const char kForceShowUpdateMenuItem[]; | 262 extern const char kForceShowUpdateMenuItem[]; |
| 265 extern const char kForceShowUpdateMenuItemCustomSummary[]; | 263 extern const char kForceShowUpdateMenuItemCustomSummary[]; |
| 266 extern const char kForceShowUpdateMenuItemNewFeaturesSummary[]; | 264 extern const char kForceShowUpdateMenuItemNewFeaturesSummary[]; |
| 267 extern const char kForceShowUpdateMenuItemSummary[]; | 265 extern const char kForceShowUpdateMenuItemSummary[]; |
| 268 extern const char kMarketUrlForTesting[]; | 266 extern const char kMarketUrlForTesting[]; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 #if defined(OS_WIN) | 360 #if defined(OS_WIN) |
| 363 bool GDITextPrintingEnabled(); | 361 bool GDITextPrintingEnabled(); |
| 364 #endif | 362 #endif |
| 365 | 363 |
| 366 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 364 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 367 // alphabetical order, or in one of the ifdefs (also in order in each section). | 365 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 368 | 366 |
| 369 } // namespace switches | 367 } // namespace switches |
| 370 | 368 |
| 371 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 369 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |