| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 extern const char kLoginUser[]; | 308 extern const char kLoginUser[]; |
| 309 extern const char kLoginPassword[]; | 309 extern const char kLoginPassword[]; |
| 310 extern const char kLoginUserWithNewPassword[]; | 310 extern const char kLoginUserWithNewPassword[]; |
| 311 extern const char kParallelAuth[]; | 311 extern const char kParallelAuth[]; |
| 312 extern const char kChromeosFrame[]; | 312 extern const char kChromeosFrame[]; |
| 313 extern const char kCandidateWindowLang[]; | 313 extern const char kCandidateWindowLang[]; |
| 314 extern const char kGuestSession[]; | 314 extern const char kGuestSession[]; |
| 315 extern const char kStubCros[]; | 315 extern const char kStubCros[]; |
| 316 extern const char kScreenSaverUrl[]; | 316 extern const char kScreenSaverUrl[]; |
| 317 extern const char kCompressSystemFeedback[]; | 317 extern const char kCompressSystemFeedback[]; |
| 318 extern const char kEnableWebUIMenu[]; | |
| 319 extern const char kEnableMediaPlayer[]; | 318 extern const char kEnableMediaPlayer[]; |
| 320 extern const char kEnableAdvancedFileSystem[]; | 319 extern const char kEnableAdvancedFileSystem[]; |
| 321 #endif | 320 #endif |
| 322 | 321 |
| 323 #if defined(OS_LINUX) | 322 #if defined(OS_LINUX) |
| 324 extern const char kScrollPixels[]; | 323 extern const char kScrollPixels[]; |
| 325 #endif | 324 #endif |
| 326 | 325 |
| 327 #if defined(OS_MACOSX) || defined(OS_WIN) | 326 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 328 extern const char kUseSystemSSL[]; | 327 extern const char kUseSystemSSL[]; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 357 #if defined(HAVE_XINPUT2) | 356 #if defined(HAVE_XINPUT2) |
| 358 extern const char kTouchDevices[]; | 357 extern const char kTouchDevices[]; |
| 359 #endif | 358 #endif |
| 360 | 359 |
| 361 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 360 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 362 // alphabetical order, or in one of the ifdefs (also in order in each section). | 361 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 363 | 362 |
| 364 } // namespace switches | 363 } // namespace switches |
| 365 | 364 |
| 366 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 365 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |