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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 extern const char kForceShowUpdateMenuItemSummary[]; | 268 extern const char kForceShowUpdateMenuItemSummary[]; |
269 extern const char kMarketUrlForTesting[]; | 269 extern const char kMarketUrlForTesting[]; |
270 extern const char kNtpSwitchToExistingTab[]; | 270 extern const char kNtpSwitchToExistingTab[]; |
271 extern const char kProgressBarAnimation[]; | 271 extern const char kProgressBarAnimation[]; |
272 extern const char kTabManagementExperimentTypeDisabled[]; | 272 extern const char kTabManagementExperimentTypeDisabled[]; |
273 extern const char kTabManagementExperimentTypeElderberry[]; | 273 extern const char kTabManagementExperimentTypeElderberry[]; |
274 extern const char kWebApkServerUrl[]; | 274 extern const char kWebApkServerUrl[]; |
275 #endif // defined(OS_ANDROID) | 275 #endif // defined(OS_ANDROID) |
276 | 276 |
277 #if defined(OS_CHROMEOS) | 277 #if defined(OS_CHROMEOS) |
| 278 extern const char kEnableLoginScreenApps[]; |
278 extern const char kEnableNativeCups[]; | 279 extern const char kEnableNativeCups[]; |
279 extern const char kCroshCommand[]; | 280 extern const char kCroshCommand[]; |
280 #endif // defined(OS_CHROMEOS) | 281 #endif // defined(OS_CHROMEOS) |
281 | 282 |
282 #if defined(USE_ASH) | 283 #if defined(USE_ASH) |
283 extern const char kOpenAsh[]; | 284 extern const char kOpenAsh[]; |
284 #endif | 285 #endif |
285 | 286 |
286 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 287 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
287 extern const char kHelp[]; | 288 extern const char kHelp[]; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 #if defined(OS_WIN) | 368 #if defined(OS_WIN) |
368 bool GDITextPrintingEnabled(); | 369 bool GDITextPrintingEnabled(); |
369 #endif | 370 #endif |
370 | 371 |
371 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 372 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
372 // alphabetical order, or in one of the ifdefs (also in order in each section). | 373 // alphabetical order, or in one of the ifdefs (also in order in each section). |
373 | 374 |
374 } // namespace switches | 375 } // namespace switches |
375 | 376 |
376 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 377 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |