| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 extern const char kShowIcons[]; | 331 extern const char kShowIcons[]; |
| 332 extern const char kUninstall[]; | 332 extern const char kUninstall[]; |
| 333 extern const char kViewerLaunchViaAppId[]; | 333 extern const char kViewerLaunchViaAppId[]; |
| 334 extern const char kWatcherProcess[]; | 334 extern const char kWatcherProcess[]; |
| 335 extern const char kWindows10CustomTitlebar[]; | 335 extern const char kWindows10CustomTitlebar[]; |
| 336 extern const char kWindows8Search[]; | 336 extern const char kWindows8Search[]; |
| 337 #endif // defined(OS_WIN) | 337 #endif // defined(OS_WIN) |
| 338 | 338 |
| 339 #if BUILDFLAG(ENABLE_PACKAGE_MASH_SERVICES) | 339 #if BUILDFLAG(ENABLE_PACKAGE_MASH_SERVICES) |
| 340 extern const char kMash[]; | 340 extern const char kMash[]; |
| 341 extern const char kMus[]; |
| 342 extern const char kMusConfig[]; |
| 341 #endif | 343 #endif |
| 342 | 344 |
| 343 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) && !defined(OFFICIAL_BUILD) | 345 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) && !defined(OFFICIAL_BUILD) |
| 344 extern const char kDebugPrint[]; | 346 extern const char kDebugPrint[]; |
| 345 #endif | 347 #endif |
| 346 | 348 |
| 347 #if BUILDFLAG(ENABLE_PLUGINS) | 349 #if BUILDFLAG(ENABLE_PLUGINS) |
| 348 extern const char kAllowNaClCrxFsAPI[]; | 350 extern const char kAllowNaClCrxFsAPI[]; |
| 349 extern const char kAllowNaClFileHandleAPI[]; | 351 extern const char kAllowNaClFileHandleAPI[]; |
| 350 extern const char kAllowNaClSocketAPI[]; | 352 extern const char kAllowNaClSocketAPI[]; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 371 #if defined(OS_WIN) | 373 #if defined(OS_WIN) |
| 372 bool GDITextPrintingEnabled(); | 374 bool GDITextPrintingEnabled(); |
| 373 #endif | 375 #endif |
| 374 | 376 |
| 375 // 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 |
| 376 // 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). |
| 377 | 379 |
| 378 } // namespace switches | 380 } // namespace switches |
| 379 | 381 |
| 380 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 382 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |