| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 extern const char kDisableAppLink[]; | 277 extern const char kDisableAppLink[]; |
| 278 extern const char kDisableContextualSearch[]; | 278 extern const char kDisableContextualSearch[]; |
| 279 extern const char kDisableVrShell[]; | 279 extern const char kDisableVrShell[]; |
| 280 extern const char kEnableAccessibilityTabSwitcher[]; | 280 extern const char kEnableAccessibilityTabSwitcher[]; |
| 281 extern const char kEnableAppLink[]; | 281 extern const char kEnableAppLink[]; |
| 282 extern const char kEnableContextualSearch[]; | 282 extern const char kEnableContextualSearch[]; |
| 283 extern const char kEnableContextualSearchContextualCardsBarIntegration[]; | 283 extern const char kEnableContextualSearchContextualCardsBarIntegration[]; |
| 284 extern const char kEnableHostedMode[]; | 284 extern const char kEnableHostedMode[]; |
| 285 extern const char kEnableHungRendererInfoBar[]; | 285 extern const char kEnableHungRendererInfoBar[]; |
| 286 extern const char kEnableVrShell[]; | 286 extern const char kEnableVrShell[]; |
| 287 extern const char kEnableWebApk[]; | |
| 288 extern const char kForceShowUpdateMenuBadge[]; | 287 extern const char kForceShowUpdateMenuBadge[]; |
| 289 extern const char kForceShowUpdateMenuItem[]; | 288 extern const char kForceShowUpdateMenuItem[]; |
| 290 extern const char kForceShowUpdateMenuItemCustomSummary[]; | 289 extern const char kForceShowUpdateMenuItemCustomSummary[]; |
| 291 extern const char kForceShowUpdateMenuItemNewFeaturesSummary[]; | 290 extern const char kForceShowUpdateMenuItemNewFeaturesSummary[]; |
| 292 extern const char kForceShowUpdateMenuItemSummary[]; | 291 extern const char kForceShowUpdateMenuItemSummary[]; |
| 293 extern const char kMarketUrlForTesting[]; | 292 extern const char kMarketUrlForTesting[]; |
| 294 extern const char kNtpSwitchToExistingTab[]; | 293 extern const char kNtpSwitchToExistingTab[]; |
| 295 extern const char kProgressBarAnimation[]; | 294 extern const char kProgressBarAnimation[]; |
| 296 extern const char kTabManagementExperimentTypeDisabled[]; | 295 extern const char kTabManagementExperimentTypeDisabled[]; |
| 297 extern const char kTabManagementExperimentTypeElderberry[]; | 296 extern const char kTabManagementExperimentTypeElderberry[]; |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 #if defined(OS_WIN) | 388 #if defined(OS_WIN) |
| 390 bool GDITextPrintingEnabled(); | 389 bool GDITextPrintingEnabled(); |
| 391 #endif | 390 #endif |
| 392 | 391 |
| 393 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 392 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 394 // alphabetical order, or in one of the ifdefs (also in order in each section). | 393 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 395 | 394 |
| 396 } // namespace switches | 395 } // namespace switches |
| 397 | 396 |
| 398 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 397 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |