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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 extern const char kMarketUrlForTesting[]; | 282 extern const char kMarketUrlForTesting[]; |
283 extern const char kNtpSwitchToExistingTab[]; | 283 extern const char kNtpSwitchToExistingTab[]; |
284 extern const char kProgressBarAnimation[]; | 284 extern const char kProgressBarAnimation[]; |
285 extern const char kTabManagementExperimentTypeDisabled[]; | 285 extern const char kTabManagementExperimentTypeDisabled[]; |
286 extern const char kTabManagementExperimentTypeElderberry[]; | 286 extern const char kTabManagementExperimentTypeElderberry[]; |
287 extern const char kWebApkServerUrl[]; | 287 extern const char kWebApkServerUrl[]; |
288 #endif // defined(OS_ANDROID) | 288 #endif // defined(OS_ANDROID) |
289 | 289 |
290 #if defined(OS_CHROMEOS) | 290 #if defined(OS_CHROMEOS) |
291 extern const char kEnableNativeCups[]; | 291 extern const char kEnableNativeCups[]; |
| 292 extern const char kCroshCommand[]; |
292 #endif // defined(OS_CHROMEOS) | 293 #endif // defined(OS_CHROMEOS) |
293 | 294 |
294 #if defined(USE_ASH) | 295 #if defined(USE_ASH) |
295 extern const char kOpenAsh[]; | 296 extern const char kOpenAsh[]; |
296 #endif | 297 #endif |
297 | 298 |
298 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 299 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
299 extern const char kHelp[]; | 300 extern const char kHelp[]; |
300 extern const char kHelpShort[]; | 301 extern const char kHelpShort[]; |
301 extern const char kPasswordStore[]; | 302 extern const char kPasswordStore[]; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 #if defined(OS_WIN) | 379 #if defined(OS_WIN) |
379 bool GDITextPrintingEnabled(); | 380 bool GDITextPrintingEnabled(); |
380 #endif | 381 #endif |
381 | 382 |
382 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 383 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
383 // alphabetical order, or in one of the ifdefs (also in order in each section). | 384 // alphabetical order, or in one of the ifdefs (also in order in each section). |
384 | 385 |
385 } // namespace switches | 386 } // namespace switches |
386 | 387 |
387 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 388 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |