| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 #endif // defined(OS_CHROMEOS) | 264 #endif // defined(OS_CHROMEOS) |
| 265 | 265 |
| 266 #if defined(USE_ASH) | 266 #if defined(USE_ASH) |
| 267 extern const char kOpenAsh[]; | 267 extern const char kOpenAsh[]; |
| 268 #endif | 268 #endif |
| 269 | 269 |
| 270 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 270 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 271 extern const char kHelp[]; | 271 extern const char kHelp[]; |
| 272 extern const char kHelpShort[]; | 272 extern const char kHelpShort[]; |
| 273 extern const char kPasswordStore[]; | 273 extern const char kPasswordStore[]; |
| 274 extern const char kEnableEncryptionSelection[]; |
| 274 extern const char kWmClass[]; | 275 extern const char kWmClass[]; |
| 275 #endif | 276 #endif |
| 276 | 277 |
| 277 #if defined(OS_MACOSX) | 278 #if defined(OS_MACOSX) |
| 278 extern const char kAppsKeepChromeAliveInTests[]; | 279 extern const char kAppsKeepChromeAliveInTests[]; |
| 279 extern const char kDisableAppInfoDialogMac[]; | 280 extern const char kDisableAppInfoDialogMac[]; |
| 280 extern const char kDisableAppWindowCycling[]; | 281 extern const char kDisableAppWindowCycling[]; |
| 281 extern const char kDisableFullscreenLowPowerMode[]; | 282 extern const char kDisableFullscreenLowPowerMode[]; |
| 282 extern const char kDisableFullscreenTabDetaching[]; | 283 extern const char kDisableFullscreenTabDetaching[]; |
| 283 extern const char kDisableHostedAppShimCreation[]; | 284 extern const char kDisableHostedAppShimCreation[]; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 #if defined(OS_WIN) | 366 #if defined(OS_WIN) |
| 366 bool GDITextPrintingEnabled(); | 367 bool GDITextPrintingEnabled(); |
| 367 #endif | 368 #endif |
| 368 | 369 |
| 369 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 370 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 370 // alphabetical order, or in one of the ifdefs (also in order in each section). | 371 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 371 | 372 |
| 372 } // namespace switches | 373 } // namespace switches |
| 373 | 374 |
| 374 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 375 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |