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