OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 extern const char kLoginUserWithNewPassword[]; | 341 extern const char kLoginUserWithNewPassword[]; |
342 extern const char kParallelAuth[]; | 342 extern const char kParallelAuth[]; |
343 extern const char kChromeosFrame[]; | 343 extern const char kChromeosFrame[]; |
344 extern const char kCandidateWindowLang[]; | 344 extern const char kCandidateWindowLang[]; |
345 extern const char kGuestSession[]; | 345 extern const char kGuestSession[]; |
346 extern const char kStubCros[]; | 346 extern const char kStubCros[]; |
347 extern const char kScreenSaverUrl[]; | 347 extern const char kScreenSaverUrl[]; |
348 extern const char kCompressSystemFeedback[]; | 348 extern const char kCompressSystemFeedback[]; |
349 extern const char kForceStubLibcros[]; | 349 extern const char kForceStubLibcros[]; |
350 extern const char kEnableDOMUIMenu[]; | 350 extern const char kEnableDOMUIMenu[]; |
| 351 extern const char kEnableMediaPlayer[]; |
| 352 extern const char kEnableAdvancedFileSystem[]; |
351 #endif | 353 #endif |
352 | 354 |
353 #if defined(OS_LINUX) | 355 #if defined(OS_LINUX) |
354 extern const char kScrollPixels[]; | 356 extern const char kScrollPixels[]; |
355 #endif | 357 #endif |
356 | 358 |
357 #if defined(OS_MACOSX) || defined(OS_WIN) | 359 #if defined(OS_MACOSX) || defined(OS_WIN) |
358 extern const char kUseSystemSSL[]; | 360 extern const char kUseSystemSSL[]; |
359 #endif | 361 #endif |
360 | 362 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 #endif | 395 #endif |
394 // Return true if the switches indicate the seccomp sandbox is enabled. | 396 // Return true if the switches indicate the seccomp sandbox is enabled. |
395 bool SeccompSandboxEnabled(); | 397 bool SeccompSandboxEnabled(); |
396 | 398 |
397 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 399 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
398 // alphabetical order, or in one of the ifdefs (also in order in each section). | 400 // alphabetical order, or in one of the ifdefs (also in order in each section). |
399 | 401 |
400 } // namespace switches | 402 } // namespace switches |
401 | 403 |
402 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 404 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |