| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 extern const char kHelpShort[]; | 328 extern const char kHelpShort[]; |
| 329 extern const char kPasswordStore[]; | 329 extern const char kPasswordStore[]; |
| 330 extern const char kWmUserTimeMs[]; | 330 extern const char kWmUserTimeMs[]; |
| 331 #endif | 331 #endif |
| 332 | 332 |
| 333 #if defined(OS_MACOSX) | 333 #if defined(OS_MACOSX) |
| 334 extern const char kAppsKeepChromeAliveInTests[]; | 334 extern const char kAppsKeepChromeAliveInTests[]; |
| 335 extern const char kHostedAppQuitNotification[]; | 335 extern const char kHostedAppQuitNotification[]; |
| 336 extern const char kDisableAppInfoDialogMac[]; | 336 extern const char kDisableAppInfoDialogMac[]; |
| 337 extern const char kDisableAppWindowCycling[]; | 337 extern const char kDisableAppWindowCycling[]; |
| 338 extern const char kDisableFullscreenLowPowerMode[]; |
| 338 extern const char kDisableFullscreenTabDetaching[]; | 339 extern const char kDisableFullscreenTabDetaching[]; |
| 339 extern const char kDisableHostedAppShimCreation[]; | 340 extern const char kDisableHostedAppShimCreation[]; |
| 340 extern const char kDisableHostedAppsInWindows[]; | 341 extern const char kDisableHostedAppsInWindows[]; |
| 341 extern const char kDisableMacViewsNativeAppWindows[]; | 342 extern const char kDisableMacViewsNativeAppWindows[]; |
| 342 extern const char kDisableTranslateNewUX[]; | 343 extern const char kDisableTranslateNewUX[]; |
| 343 extern const char kEnableAppInfoDialogMac[]; | 344 extern const char kEnableAppInfoDialogMac[]; |
| 344 extern const char kEnableAppWindowCycling[]; | 345 extern const char kEnableAppWindowCycling[]; |
| 345 extern const char kEnableFullscreenLowPowerMode[]; | |
| 346 extern const char kEnableFullscreenTabDetaching[]; | 346 extern const char kEnableFullscreenTabDetaching[]; |
| 347 extern const char kEnableHostedAppsInWindows[]; | 347 extern const char kEnableHostedAppsInWindows[]; |
| 348 extern const char kEnableMacViewsNativeAppWindows[]; | 348 extern const char kEnableMacViewsNativeAppWindows[]; |
| 349 extern const char kEnableTranslateNewUX[]; | 349 extern const char kEnableTranslateNewUX[]; |
| 350 extern const char kMetricsClientID[]; | 350 extern const char kMetricsClientID[]; |
| 351 extern const char kRelauncherProcess[]; | 351 extern const char kRelauncherProcess[]; |
| 352 extern const char kRelauncherProcessDMGDevice[]; | 352 extern const char kRelauncherProcessDMGDevice[]; |
| 353 #endif // defined(OS_MACOSX) | 353 #endif // defined(OS_MACOSX) |
| 354 | 354 |
| 355 #if defined(OS_WIN) | 355 #if defined(OS_WIN) |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 #if defined(OS_CHROMEOS) | 395 #if defined(OS_CHROMEOS) |
| 396 bool PowerOverlayEnabled(); | 396 bool PowerOverlayEnabled(); |
| 397 #endif | 397 #endif |
| 398 | 398 |
| 399 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 399 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 400 // alphabetical order, or in one of the ifdefs (also in order in each section). | 400 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 401 | 401 |
| 402 } // namespace switches | 402 } // namespace switches |
| 403 | 403 |
| 404 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 404 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |