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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
267 extern const char kForceShowUpdateMenuItemSummary[]; | 267 extern const char kForceShowUpdateMenuItemSummary[]; |
268 extern const char kMarketUrlForTesting[]; | 268 extern const char kMarketUrlForTesting[]; |
269 extern const char kNtpSwitchToExistingTab[]; | 269 extern const char kNtpSwitchToExistingTab[]; |
270 extern const char kProgressBarAnimation[]; | 270 extern const char kProgressBarAnimation[]; |
271 extern const char kTabManagementExperimentTypeDisabled[]; | 271 extern const char kTabManagementExperimentTypeDisabled[]; |
272 extern const char kTabManagementExperimentTypeElderberry[]; | 272 extern const char kTabManagementExperimentTypeElderberry[]; |
273 extern const char kWebApkServerUrl[]; | 273 extern const char kWebApkServerUrl[]; |
274 #endif // defined(OS_ANDROID) | 274 #endif // defined(OS_ANDROID) |
275 | 275 |
276 #if defined(OS_CHROMEOS) | 276 #if defined(OS_CHROMEOS) |
277 extern const char kEnableLoginScreenApps[]; | 277 extern const char kEnableLoginScreenApps[]; |
Lei Zhang
2017/03/31 23:35:34
nit: Can you sort this section? Ditto in the .cc f
skau
2017/04/01 01:02:47
Done.
| |
278 extern const char kEnableNativeCups[]; | 278 extern const char kDisableNativeCups[]; |
279 extern const char kCroshCommand[]; | 279 extern const char kCroshCommand[]; |
280 #endif // defined(OS_CHROMEOS) | 280 #endif // defined(OS_CHROMEOS) |
281 | 281 |
282 #if defined(USE_ASH) | 282 #if defined(USE_ASH) |
283 extern const char kOpenAsh[]; | 283 extern const char kOpenAsh[]; |
284 #endif | 284 #endif |
285 | 285 |
286 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 286 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
287 extern const char kHelp[]; | 287 extern const char kHelp[]; |
288 extern const char kHelpShort[]; | 288 extern const char kHelpShort[]; |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
369 #if defined(OS_WIN) | 369 #if defined(OS_WIN) |
370 bool GDITextPrintingEnabled(); | 370 bool GDITextPrintingEnabled(); |
371 #endif | 371 #endif |
372 | 372 |
373 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 373 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
374 // alphabetical order, or in one of the ifdefs (also in order in each section). | 374 // alphabetical order, or in one of the ifdefs (also in order in each section). |
375 | 375 |
376 } // namespace switches | 376 } // namespace switches |
377 | 377 |
378 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 378 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |