| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 extern const char kMetricsRecordingOnly[]; | 229 extern const char kMetricsRecordingOnly[]; |
| 230 extern const char kNaClDebugIP[]; | 230 extern const char kNaClDebugIP[]; |
| 231 extern const char kNaClDebugPorts[]; | 231 extern const char kNaClDebugPorts[]; |
| 232 extern const char kNaClBrokerProcess[]; | 232 extern const char kNaClBrokerProcess[]; |
| 233 extern const char kNaClLoaderProcess[]; | 233 extern const char kNaClLoaderProcess[]; |
| 234 extern const char kNaClStartupDialog[]; | 234 extern const char kNaClStartupDialog[]; |
| 235 extern const char kNoDefaultBrowserCheck[]; | 235 extern const char kNoDefaultBrowserCheck[]; |
| 236 extern const char kNoEvents[]; | 236 extern const char kNoEvents[]; |
| 237 extern const char kNoExperiments[]; | 237 extern const char kNoExperiments[]; |
| 238 extern const char kNoFirstRun[]; | 238 extern const char kNoFirstRun[]; |
| 239 extern const char kNoGpuSandbox[]; |
| 239 extern const char kNoJsRandomness[]; | 240 extern const char kNoJsRandomness[]; |
| 240 extern const char kNoProxyServer[]; | 241 extern const char kNoProxyServer[]; |
| 241 extern const char kNoReferrers[]; | 242 extern const char kNoReferrers[]; |
| 242 extern const char kNoPings[]; | 243 extern const char kNoPings[]; |
| 243 extern const char kNoSandbox[]; | 244 extern const char kNoSandbox[]; |
| 244 extern const char kNoStartupWindow[]; | 245 extern const char kNoStartupWindow[]; |
| 245 extern const char kNotifyCloudPrintTokenExpired[]; | 246 extern const char kNotifyCloudPrintTokenExpired[]; |
| 246 extern const char kNumPacThreads[]; | 247 extern const char kNumPacThreads[]; |
| 247 extern const char kOpenInNewWindow[]; | 248 extern const char kOpenInNewWindow[]; |
| 248 extern const char kOrganicInstall[]; | 249 extern const char kOrganicInstall[]; |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 #endif | 407 #endif |
| 407 // Return true if the switches indicate the seccomp sandbox is enabled. | 408 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 408 bool SeccompSandboxEnabled(); | 409 bool SeccompSandboxEnabled(); |
| 409 | 410 |
| 410 // 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 |
| 411 // 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). |
| 412 | 413 |
| 413 } // namespace switches | 414 } // namespace switches |
| 414 | 415 |
| 415 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 416 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |