OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 extern const char kKeepAliveForTest[]; | 214 extern const char kKeepAliveForTest[]; |
215 extern const char kLoadComponentExtension[]; | 215 extern const char kLoadComponentExtension[]; |
216 extern const char kLoadExtension[]; | 216 extern const char kLoadExtension[]; |
217 extern const char kLoadOpencryptoki[]; | 217 extern const char kLoadOpencryptoki[]; |
218 extern const char kUninstallExtension[]; | 218 extern const char kUninstallExtension[]; |
219 extern const char kLogNetLog[]; | 219 extern const char kLogNetLog[]; |
220 extern const char kMakeDefaultBrowser[]; | 220 extern const char kMakeDefaultBrowser[]; |
221 extern const char kManaged[]; | 221 extern const char kManaged[]; |
222 extern const char kMediaCacheSize[]; | 222 extern const char kMediaCacheSize[]; |
223 extern const char kMemoryProfiling[]; | 223 extern const char kMemoryProfiling[]; |
224 extern const char kMemoryWidget[]; | |
225 extern const char kMessageLoopHistogrammer[]; | 224 extern const char kMessageLoopHistogrammer[]; |
226 extern const char kMetricsRecordingOnly[]; | 225 extern const char kMetricsRecordingOnly[]; |
227 extern const char kMultiProfiles[]; | 226 extern const char kMultiProfiles[]; |
228 extern const char kNaClGdb[]; | 227 extern const char kNaClGdb[]; |
229 extern const char kNaClLoaderCmdPrefix[]; | 228 extern const char kNaClLoaderCmdPrefix[]; |
230 extern const char kNetLogLevel[]; | 229 extern const char kNetLogLevel[]; |
231 extern const char kNoDefaultBrowserCheck[]; | 230 extern const char kNoDefaultBrowserCheck[]; |
232 extern const char kNoDisplayingInsecureContent[]; | 231 extern const char kNoDisplayingInsecureContent[]; |
233 extern const char kNoEvents[]; | 232 extern const char kNoEvents[]; |
234 extern const char kNoExperiments[]; | 233 extern const char kNoExperiments[]; |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 #else | 403 #else |
405 extern const char kEnablePrintPreview[]; | 404 extern const char kEnablePrintPreview[]; |
406 #endif | 405 #endif |
407 | 406 |
408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 407 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
409 // alphabetical order, or in one of the ifdefs (also in order in each section). | 408 // alphabetical order, or in one of the ifdefs (also in order in each section). |
410 | 409 |
411 } // namespace switches | 410 } // namespace switches |
412 | 411 |
413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 412 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |