| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 #endif | 354 #endif |
| 355 | 355 |
| 356 #if defined(OS_MACOSX) | 356 #if defined(OS_MACOSX) |
| 357 extern const char kEnableExposeForTabs[]; | 357 extern const char kEnableExposeForTabs[]; |
| 358 extern const char kRelauncherProcess[]; | 358 extern const char kRelauncherProcess[]; |
| 359 extern const char kUseMockKeychain[]; | 359 extern const char kUseMockKeychain[]; |
| 360 #endif | 360 #endif |
| 361 | 361 |
| 362 #if !defined(OS_MACOSX) | 362 #if !defined(OS_MACOSX) |
| 363 extern const char kKioskMode[]; | 363 extern const char kKioskMode[]; |
| 364 extern const char kKioskModePrinting[]; |
| 364 #endif | 365 #endif |
| 365 | 366 |
| 366 #if defined(TOOLKIT_VIEWS) | 367 #if defined(TOOLKIT_VIEWS) |
| 367 extern const char kDebugViewsPaint[]; | 368 extern const char kDebugViewsPaint[]; |
| 368 extern const char kTouchDevices[]; | 369 extern const char kTouchDevices[]; |
| 369 #endif | 370 #endif |
| 370 | 371 |
| 371 | 372 |
| 372 #ifndef NDEBUG | 373 #ifndef NDEBUG |
| 373 extern const char kOAuthHostUrl[]; | 374 extern const char kOAuthHostUrl[]; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 388 bool IsPrintPreviewEnabled(); | 389 bool IsPrintPreviewEnabled(); |
| 389 | 390 |
| 390 bool IsInBrowserThumbnailingEnabled(); | 391 bool IsInBrowserThumbnailingEnabled(); |
| 391 | 392 |
| 392 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 393 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 393 // alphabetical order, or in one of the ifdefs (also in order in each section). | 394 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 394 | 395 |
| 395 } // namespace switches | 396 } // namespace switches |
| 396 | 397 |
| 397 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 398 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |