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 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 extern const char kLogPluginMessages[]; | 158 extern const char kLogPluginMessages[]; |
159 extern const char kLoggingLevel[]; | 159 extern const char kLoggingLevel[]; |
160 extern const char kMakeDefaultBrowser[]; | 160 extern const char kMakeDefaultBrowser[]; |
161 extern const char kMediaCacheSize[]; | 161 extern const char kMediaCacheSize[]; |
162 extern const char kMemoryProfiling[]; | 162 extern const char kMemoryProfiling[]; |
163 extern const char kMessageLoopHistogrammer[]; | 163 extern const char kMessageLoopHistogrammer[]; |
164 extern const char kMetricsRecordingOnly[]; | 164 extern const char kMetricsRecordingOnly[]; |
165 extern const char kNaClBrokerProcess[]; | 165 extern const char kNaClBrokerProcess[]; |
166 extern const char kNaClLoaderProcess[]; | 166 extern const char kNaClLoaderProcess[]; |
167 extern const char kNaClStartupDialog[]; | 167 extern const char kNaClStartupDialog[]; |
168 extern const char kNewTabPage[]; | |
169 extern const char kNewWrenchMenu[]; | 168 extern const char kNewWrenchMenu[]; |
170 extern const char kNoDefaultBrowserCheck[]; | 169 extern const char kNoDefaultBrowserCheck[]; |
171 extern const char kNoEvents[]; | 170 extern const char kNoEvents[]; |
172 extern const char kNoFirstRun[]; | 171 extern const char kNoFirstRun[]; |
173 extern const char kNoJsRandomness[]; | 172 extern const char kNoJsRandomness[]; |
174 extern const char kNoProxyServer[]; | 173 extern const char kNoProxyServer[]; |
175 extern const char kNoReferrers[]; | 174 extern const char kNoReferrers[]; |
176 extern const char kNoSandbox[]; | 175 extern const char kNoSandbox[]; |
177 extern const char kOpenInNewWindow[]; | 176 extern const char kOpenInNewWindow[]; |
178 extern const char kPackExtension[]; | 177 extern const char kPackExtension[]; |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 #endif | 308 #endif |
310 // Return true if the switches indicate the seccomp sandbox is enabled. | 309 // Return true if the switches indicate the seccomp sandbox is enabled. |
311 bool SeccompSandboxEnabled(); | 310 bool SeccompSandboxEnabled(); |
312 | 311 |
313 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 312 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
314 // alphabetical order, or in one of the ifdefs (also in order in each section). | 313 // alphabetical order, or in one of the ifdefs (also in order in each section). |
315 | 314 |
316 } // namespace switches | 315 } // namespace switches |
317 | 316 |
318 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 317 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |