| 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 extern const char kMarketUrlForTesting[]; | 294 extern const char kMarketUrlForTesting[]; |
| 295 extern const char kMultiInstanceMergeTabs[]; | 295 extern const char kMultiInstanceMergeTabs[]; |
| 296 extern const char kNtpSwitchToExistingTab[]; | 296 extern const char kNtpSwitchToExistingTab[]; |
| 297 extern const char kProgressBarAnimation[]; | 297 extern const char kProgressBarAnimation[]; |
| 298 extern const char kTabManagementExperimentTypeAnise[]; | 298 extern const char kTabManagementExperimentTypeAnise[]; |
| 299 extern const char kTabManagementExperimentTypeBasil[]; | 299 extern const char kTabManagementExperimentTypeBasil[]; |
| 300 extern const char kTabManagementExperimentTypeChive[]; | 300 extern const char kTabManagementExperimentTypeChive[]; |
| 301 extern const char kTabManagementExperimentTypeDill[]; | 301 extern const char kTabManagementExperimentTypeDill[]; |
| 302 extern const char kTabManagementExperimentTypeDisabled[]; | 302 extern const char kTabManagementExperimentTypeDisabled[]; |
| 303 extern const char kTabManagementExperimentTypeElderberry[]; | 303 extern const char kTabManagementExperimentTypeElderberry[]; |
| 304 extern const char kWebApkServerUrl[]; |
| 304 #endif // defined(OS_ANDROID) | 305 #endif // defined(OS_ANDROID) |
| 305 | 306 |
| 306 #if defined(OS_CHROMEOS) | 307 #if defined(OS_CHROMEOS) |
| 307 extern const char kEnableIntentPicker[]; | 308 extern const char kEnableIntentPicker[]; |
| 308 extern const char kEnableNativeCups[]; | 309 extern const char kEnableNativeCups[]; |
| 309 #endif // defined(OS_CHROMEOS) | 310 #endif // defined(OS_CHROMEOS) |
| 310 | 311 |
| 311 #if defined(USE_ASH) | 312 #if defined(USE_ASH) |
| 312 extern const char kOpenAsh[]; | 313 extern const char kOpenAsh[]; |
| 313 #endif | 314 #endif |
| (...skipping 73 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 |