| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 extern const char kStubCros[]; | 307 extern const char kStubCros[]; |
| 308 extern const char kScreenSaverUrl[]; | 308 extern const char kScreenSaverUrl[]; |
| 309 extern const char kCompressSystemFeedback[]; | 309 extern const char kCompressSystemFeedback[]; |
| 310 extern const char kAuthExtensionPath[]; | 310 extern const char kAuthExtensionPath[]; |
| 311 #ifndef NDEBUG | 311 #ifndef NDEBUG |
| 312 extern const char kOobeSkipPostLogin[]; | 312 extern const char kOobeSkipPostLogin[]; |
| 313 extern const char kFileManagerExtensionPath[]; | 313 extern const char kFileManagerExtensionPath[]; |
| 314 #endif | 314 #endif |
| 315 #endif | 315 #endif |
| 316 | 316 |
| 317 #if defined(OS_POSIX) && !defined(OS_MACOSX) | |
| 318 extern const char kScrollPixels[]; | |
| 319 #endif | |
| 320 | |
| 321 #if defined(OS_MACOSX) || defined(OS_WIN) | 317 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 322 extern const char kUseSystemSSL[]; | 318 extern const char kUseSystemSSL[]; |
| 323 #endif | 319 #endif |
| 324 | 320 |
| 325 #if defined(OS_POSIX) | 321 #if defined(OS_POSIX) |
| 326 extern const char kEnableCrashReporter[]; | 322 extern const char kEnableCrashReporter[]; |
| 327 extern const char kNoProcessSingletonDialog[]; | 323 extern const char kNoProcessSingletonDialog[]; |
| 328 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 324 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 329 extern const char kPasswordStore[]; | 325 extern const char kPasswordStore[]; |
| 330 #endif | 326 #endif |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 bool IsPrintPreviewEnabled(); | 364 bool IsPrintPreviewEnabled(); |
| 369 | 365 |
| 370 bool IsInBrowserThumbnailingEnabled(); | 366 bool IsInBrowserThumbnailingEnabled(); |
| 371 | 367 |
| 372 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 368 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 373 // alphabetical order, or in one of the ifdefs (also in order in each section). | 369 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 374 | 370 |
| 375 } // namespace switches | 371 } // namespace switches |
| 376 | 372 |
| 377 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 373 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |