| OLD | NEW |
| 1 // Copyright (c) 2010 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 |
| 11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 extern const char kLoginUser[]; | 361 extern const char kLoginUser[]; |
| 362 extern const char kLoginPassword[]; | 362 extern const char kLoginPassword[]; |
| 363 extern const char kLoginUserWithNewPassword[]; | 363 extern const char kLoginUserWithNewPassword[]; |
| 364 extern const char kParallelAuth[]; | 364 extern const char kParallelAuth[]; |
| 365 extern const char kChromeosFrame[]; | 365 extern const char kChromeosFrame[]; |
| 366 extern const char kCandidateWindowLang[]; | 366 extern const char kCandidateWindowLang[]; |
| 367 extern const char kGuestSession[]; | 367 extern const char kGuestSession[]; |
| 368 extern const char kStubCros[]; | 368 extern const char kStubCros[]; |
| 369 extern const char kScreenSaverUrl[]; | 369 extern const char kScreenSaverUrl[]; |
| 370 extern const char kCompressSystemFeedback[]; | 370 extern const char kCompressSystemFeedback[]; |
| 371 extern const char kEnableDOMUIMenu[]; | 371 extern const char kEnableWebUIMenu[]; |
| 372 extern const char kEnableMediaPlayer[]; | 372 extern const char kEnableMediaPlayer[]; |
| 373 extern const char kEnableAdvancedFileSystem[]; | 373 extern const char kEnableAdvancedFileSystem[]; |
| 374 #endif | 374 #endif |
| 375 | 375 |
| 376 #if defined(OS_LINUX) | 376 #if defined(OS_LINUX) |
| 377 extern const char kScrollPixels[]; | 377 extern const char kScrollPixels[]; |
| 378 #endif | 378 #endif |
| 379 | 379 |
| 380 #if defined(OS_MACOSX) || defined(OS_WIN) | 380 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 381 extern const char kUseSystemSSL[]; | 381 extern const char kUseSystemSSL[]; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 | 420 |
| 421 // Return true if the switches indicate the seccomp sandbox is enabled. | 421 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 422 bool SeccompSandboxEnabled(); | 422 bool SeccompSandboxEnabled(); |
| 423 | 423 |
| 424 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 424 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 425 // alphabetical order, or in one of the ifdefs (also in order in each section). | 425 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 426 | 426 |
| 427 } // namespace switches | 427 } // namespace switches |
| 428 | 428 |
| 429 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 429 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |