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