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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 extern const char kWaitForDebuggerChildren[]; | 332 extern const char kWaitForDebuggerChildren[]; |
333 extern const char kWebWorkerProcessPerCore[]; | 333 extern const char kWebWorkerProcessPerCore[]; |
334 extern const char kWebWorkerShareProcesses[]; | 334 extern const char kWebWorkerShareProcesses[]; |
335 extern const char kWinHttpProxyResolver[]; | 335 extern const char kWinHttpProxyResolver[]; |
336 extern const char kWorkerProcess[]; | 336 extern const char kWorkerProcess[]; |
337 extern const char kZygoteCmdPrefix[]; | 337 extern const char kZygoteCmdPrefix[]; |
338 extern const char kZygoteProcess[]; | 338 extern const char kZygoteProcess[]; |
339 | 339 |
340 #if defined(OS_CHROMEOS) | 340 #if defined(OS_CHROMEOS) |
341 extern const char kEnableGView[]; | 341 extern const char kEnableGView[]; |
342 extern const char kEnableLoginImages[]; | |
343 extern const char kLoginManager[]; | 342 extern const char kLoginManager[]; |
344 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 343 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
345 // purposes. | 344 // purposes. |
346 extern const char kLoginScreen[]; | 345 extern const char kLoginScreen[]; |
347 extern const char kLoginScreenSize[]; | 346 extern const char kLoginScreenSize[]; |
348 extern const char kTestLoadLibcros[]; | 347 extern const char kTestLoadLibcros[]; |
349 extern const char kLoginProfile[]; | 348 extern const char kLoginProfile[]; |
350 extern const char kLoginUser[]; | 349 extern const char kLoginUser[]; |
351 extern const char kLoginPassword[]; | 350 extern const char kLoginPassword[]; |
352 extern const char kLoginUserWithNewPassword[]; | 351 extern const char kLoginUserWithNewPassword[]; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 #endif | 409 #endif |
411 // Return true if the switches indicate the seccomp sandbox is enabled. | 410 // Return true if the switches indicate the seccomp sandbox is enabled. |
412 bool SeccompSandboxEnabled(); | 411 bool SeccompSandboxEnabled(); |
413 | 412 |
414 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 413 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
415 // alphabetical order, or in one of the ifdefs (also in order in each section). | 414 // alphabetical order, or in one of the ifdefs (also in order in each section). |
416 | 415 |
417 } // namespace switches | 416 } // namespace switches |
418 | 417 |
419 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 418 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |