| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 #if defined(OS_MACOSX) | 335 #if defined(OS_MACOSX) |
| 336 extern const char kEnableExposeForTabs[]; | 336 extern const char kEnableExposeForTabs[]; |
| 337 extern const char kRelauncherProcess[]; | 337 extern const char kRelauncherProcess[]; |
| 338 extern const char kUseMockKeychain[]; | 338 extern const char kUseMockKeychain[]; |
| 339 #endif | 339 #endif |
| 340 | 340 |
| 341 #if !defined(OS_MACOSX) | 341 #if !defined(OS_MACOSX) |
| 342 extern const char kKioskMode[]; | 342 extern const char kKioskMode[]; |
| 343 #endif | 343 #endif |
| 344 | 344 |
| 345 #if defined(TOOLKIT_GTK) | |
| 346 extern const char kEnableGlobalBookmarkMenu[]; | |
| 347 #endif | |
| 348 | |
| 349 #if defined(TOOLKIT_VIEWS) | 345 #if defined(TOOLKIT_VIEWS) |
| 350 extern const char kDebugViewsPaint[]; | 346 extern const char kDebugViewsPaint[]; |
| 351 extern const char kViewsDesktop[]; | 347 extern const char kViewsDesktop[]; |
| 352 #endif | 348 #endif |
| 353 | 349 |
| 354 #if defined(TOUCH_UI) | 350 #if defined(TOUCH_UI) |
| 355 extern const char kKeepMouseCursor[]; | 351 extern const char kKeepMouseCursor[]; |
| 356 extern const char kTouchDevices[]; | 352 extern const char kTouchDevices[]; |
| 357 #endif | 353 #endif |
| 358 | 354 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 372 bool IsPrintPreviewEnabled(); | 368 bool IsPrintPreviewEnabled(); |
| 373 | 369 |
| 374 bool IsInBrowserThumbnailingEnabled(); | 370 bool IsInBrowserThumbnailingEnabled(); |
| 375 | 371 |
| 376 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 372 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 377 // alphabetical order, or in one of the ifdefs (also in order in each section). | 373 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 378 | 374 |
| 379 } // namespace switches | 375 } // namespace switches |
| 380 | 376 |
| 381 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 377 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |