| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 extern const char kMemoryProfiling[]; | 215 extern const char kMemoryProfiling[]; |
| 216 extern const char kMessageLoopHistogrammer[]; | 216 extern const char kMessageLoopHistogrammer[]; |
| 217 extern const char kMetricsRecordingOnly[]; | 217 extern const char kMetricsRecordingOnly[]; |
| 218 extern const char kNaClDebugIP[]; | 218 extern const char kNaClDebugIP[]; |
| 219 extern const char kNaClDebugPorts[]; | 219 extern const char kNaClDebugPorts[]; |
| 220 extern const char kNaClBrokerProcess[]; | 220 extern const char kNaClBrokerProcess[]; |
| 221 extern const char kNaClLoaderProcess[]; | 221 extern const char kNaClLoaderProcess[]; |
| 222 extern const char kNaClStartupDialog[]; | 222 extern const char kNaClStartupDialog[]; |
| 223 extern const char kNoDefaultBrowserCheck[]; | 223 extern const char kNoDefaultBrowserCheck[]; |
| 224 extern const char kNoEvents[]; | 224 extern const char kNoEvents[]; |
| 225 extern const char kNoExperiments[]; |
| 225 extern const char kNoFirstRun[]; | 226 extern const char kNoFirstRun[]; |
| 226 extern const char kNoJsRandomness[]; | 227 extern const char kNoJsRandomness[]; |
| 227 extern const char kNoLabs[]; | |
| 228 extern const char kNoProxyServer[]; | 228 extern const char kNoProxyServer[]; |
| 229 extern const char kNoReferrers[]; | 229 extern const char kNoReferrers[]; |
| 230 extern const char kNoPings[]; | 230 extern const char kNoPings[]; |
| 231 extern const char kNoSandbox[]; | 231 extern const char kNoSandbox[]; |
| 232 extern const char kNoStartupWindow[]; | 232 extern const char kNoStartupWindow[]; |
| 233 extern const char kNotifyCloudPrintTokenExpired[]; | 233 extern const char kNotifyCloudPrintTokenExpired[]; |
| 234 extern const char kNumPacThreads[]; | 234 extern const char kNumPacThreads[]; |
| 235 extern const char kOpenInNewWindow[]; | 235 extern const char kOpenInNewWindow[]; |
| 236 extern const char kOrganicInstall[]; | 236 extern const char kOrganicInstall[]; |
| 237 extern const char kPackExtension[]; | 237 extern const char kPackExtension[]; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 #endif | 387 #endif |
| 388 // Return true if the switches indicate the seccomp sandbox is enabled. | 388 // Return true if the switches indicate the seccomp sandbox is enabled. |
| 389 bool SeccompSandboxEnabled(); | 389 bool SeccompSandboxEnabled(); |
| 390 | 390 |
| 391 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 391 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 392 // alphabetical order, or in one of the ifdefs (also in order in each section). | 392 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 393 | 393 |
| 394 } // namespace switches | 394 } // namespace switches |
| 395 | 395 |
| 396 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 396 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |