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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 extern const char kLoginUser[]; | 325 extern const char kLoginUser[]; |
326 extern const char kLoginPassword[]; | 326 extern const char kLoginPassword[]; |
327 extern const char kLoginUserWithNewPassword[]; | 327 extern const char kLoginUserWithNewPassword[]; |
328 extern const char kParallelAuth[]; | 328 extern const char kParallelAuth[]; |
329 extern const char kCandidateWindowLang[]; | 329 extern const char kCandidateWindowLang[]; |
330 extern const char kGuestSession[]; | 330 extern const char kGuestSession[]; |
331 extern const char kStubCros[]; | 331 extern const char kStubCros[]; |
332 extern const char kScreenSaverUrl[]; | 332 extern const char kScreenSaverUrl[]; |
333 extern const char kCompressSystemFeedback[]; | 333 extern const char kCompressSystemFeedback[]; |
334 extern const char kAuthExtensionPath[]; | 334 extern const char kAuthExtensionPath[]; |
335 extern const char kEnablePhotoEditor[]; | |
336 #ifndef NDEBUG | 335 #ifndef NDEBUG |
337 extern const char kOobeSkipPostLogin[]; | 336 extern const char kOobeSkipPostLogin[]; |
338 #endif | 337 #endif |
339 #endif | 338 #endif |
340 | 339 |
341 #if defined(OS_POSIX) | 340 #if defined(OS_POSIX) |
342 extern const char kEnableCrashReporter[]; | 341 extern const char kEnableCrashReporter[]; |
343 extern const char kNoProcessSingletonDialog[]; | 342 extern const char kNoProcessSingletonDialog[]; |
344 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 343 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
345 extern const char kPasswordStore[]; | 344 extern const char kPasswordStore[]; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 bool IsPrintPreviewEnabled(); | 377 bool IsPrintPreviewEnabled(); |
379 | 378 |
380 bool IsInBrowserThumbnailingEnabled(); | 379 bool IsInBrowserThumbnailingEnabled(); |
381 | 380 |
382 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 381 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
383 // alphabetical order, or in one of the ifdefs (also in order in each section). | 382 // alphabetical order, or in one of the ifdefs (also in order in each section). |
384 | 383 |
385 } // namespace switches | 384 } // namespace switches |
386 | 385 |
387 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 386 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |