| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 extern const char kMarketUrlForTesting[]; | 293 extern const char kMarketUrlForTesting[]; |
| 294 extern const char kMultiInstanceMergeTabs[]; | 294 extern const char kMultiInstanceMergeTabs[]; |
| 295 extern const char kNtpSwitchToExistingTab[]; | 295 extern const char kNtpSwitchToExistingTab[]; |
| 296 extern const char kProgressBarAnimation[]; | 296 extern const char kProgressBarAnimation[]; |
| 297 extern const char kTabManagementExperimentTypeAnise[]; | 297 extern const char kTabManagementExperimentTypeAnise[]; |
| 298 extern const char kTabManagementExperimentTypeBasil[]; | 298 extern const char kTabManagementExperimentTypeBasil[]; |
| 299 extern const char kTabManagementExperimentTypeChive[]; | 299 extern const char kTabManagementExperimentTypeChive[]; |
| 300 extern const char kTabManagementExperimentTypeDill[]; | 300 extern const char kTabManagementExperimentTypeDill[]; |
| 301 extern const char kTabManagementExperimentTypeDisabled[]; | 301 extern const char kTabManagementExperimentTypeDisabled[]; |
| 302 extern const char kTabManagementExperimentTypeElderberry[]; | 302 extern const char kTabManagementExperimentTypeElderberry[]; |
| 303 extern const char kWebApkServerUrl[]; |
| 303 #endif // defined(OS_ANDROID) | 304 #endif // defined(OS_ANDROID) |
| 304 | 305 |
| 305 #if defined(OS_CHROMEOS) | 306 #if defined(OS_CHROMEOS) |
| 306 extern const char kEnableIntentPicker[]; | 307 extern const char kEnableIntentPicker[]; |
| 307 extern const char kEnableNativeCups[]; | 308 extern const char kEnableNativeCups[]; |
| 308 #endif // defined(OS_CHROMEOS) | 309 #endif // defined(OS_CHROMEOS) |
| 309 | 310 |
| 310 #if defined(USE_ASH) | 311 #if defined(USE_ASH) |
| 311 extern const char kOpenAsh[]; | 312 extern const char kOpenAsh[]; |
| 312 #endif | 313 #endif |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 #if defined(OS_CHROMEOS) | 388 #if defined(OS_CHROMEOS) |
| 388 bool PowerOverlayEnabled(); | 389 bool PowerOverlayEnabled(); |
| 389 #endif | 390 #endif |
| 390 | 391 |
| 391 // 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 |
| 392 // 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). |
| 393 | 394 |
| 394 } // namespace switches | 395 } // namespace switches |
| 395 | 396 |
| 396 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 397 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |