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