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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 extern const char kLoginScreen[]; | 306 extern const char kLoginScreen[]; |
307 extern const char kLoginScreenSize[]; | 307 extern const char kLoginScreenSize[]; |
308 extern const char kTestLoadLibcros[]; | 308 extern const char kTestLoadLibcros[]; |
309 extern const char kLoginProfile[]; | 309 extern const char kLoginProfile[]; |
310 extern const char kLoginUser[]; | 310 extern const char kLoginUser[]; |
311 extern const char kLoginPassword[]; | 311 extern const char kLoginPassword[]; |
312 extern const char kChromeosFrame[]; | 312 extern const char kChromeosFrame[]; |
313 extern const char kChromeosLogToFile[]; | 313 extern const char kChromeosLogToFile[]; |
314 extern const char kBWSI[]; | 314 extern const char kBWSI[]; |
315 extern const char kStubCros[]; | 315 extern const char kStubCros[]; |
| 316 extern const char kDisableBookmarks[]; |
316 #endif | 317 #endif |
317 | 318 |
318 #if defined(OS_LINUX) | 319 #if defined(OS_LINUX) |
319 extern const char kScrollPixels[]; | 320 extern const char kScrollPixels[]; |
320 #endif | 321 #endif |
321 | 322 |
322 #if defined(OS_MACOSX) || defined(OS_WIN) | 323 #if defined(OS_MACOSX) || defined(OS_WIN) |
323 extern const char kUseSystemSSL[]; | 324 extern const char kUseSystemSSL[]; |
324 #endif | 325 #endif |
325 | 326 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 #endif | 358 #endif |
358 // Return true if the switches indicate the seccomp sandbox is enabled. | 359 // Return true if the switches indicate the seccomp sandbox is enabled. |
359 bool SeccompSandboxEnabled(); | 360 bool SeccompSandboxEnabled(); |
360 | 361 |
361 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 362 // 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). | 363 // alphabetical order, or in one of the ifdefs (also in order in each section). |
363 | 364 |
364 } // namespace switches | 365 } // namespace switches |
365 | 366 |
366 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 367 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |