OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 extern const char kLogNetLog[]; | 208 extern const char kLogNetLog[]; |
209 extern const char kMakeDefaultBrowser[]; | 209 extern const char kMakeDefaultBrowser[]; |
210 extern const char kMediaCacheSize[]; | 210 extern const char kMediaCacheSize[]; |
211 extern const char kMemoryProfiling[]; | 211 extern const char kMemoryProfiling[]; |
212 extern const char kMessageLoopHistogrammer[]; | 212 extern const char kMessageLoopHistogrammer[]; |
213 extern const char kMetricsRecordingOnly[]; | 213 extern const char kMetricsRecordingOnly[]; |
214 extern const char kMultiProfiles[]; | 214 extern const char kMultiProfiles[]; |
215 extern const char kNaClDebugIP[]; | 215 extern const char kNaClDebugIP[]; |
216 extern const char kNaClDebugPorts[]; | 216 extern const char kNaClDebugPorts[]; |
217 extern const char kNaClLoaderCmdPrefix[]; | 217 extern const char kNaClLoaderCmdPrefix[]; |
218 extern const char kNaClStartupDialog[]; | |
219 extern const char kNetLogLevel[]; | 218 extern const char kNetLogLevel[]; |
220 extern const char kNewTabPage[]; | 219 extern const char kNewTabPage[]; |
221 extern const char kNoDefaultBrowserCheck[]; | 220 extern const char kNoDefaultBrowserCheck[]; |
222 extern const char kNoDisplayingInsecureContent[]; | 221 extern const char kNoDisplayingInsecureContent[]; |
223 extern const char kNoEvents[]; | 222 extern const char kNoEvents[]; |
224 extern const char kNoExperiments[]; | 223 extern const char kNoExperiments[]; |
225 extern const char kNoFirstRun[]; | 224 extern const char kNoFirstRun[]; |
226 extern const char kNoProxyServer[]; | 225 extern const char kNoProxyServer[]; |
227 extern const char kNoPings[]; | 226 extern const char kNoPings[]; |
228 extern const char kNoRunningInsecureContent[]; | 227 extern const char kNoRunningInsecureContent[]; |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 bool IsPrintPreviewEnabled(); | 375 bool IsPrintPreviewEnabled(); |
377 | 376 |
378 bool IsInBrowserThumbnailingEnabled(); | 377 bool IsInBrowserThumbnailingEnabled(); |
379 | 378 |
380 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 379 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
381 // alphabetical order, or in one of the ifdefs (also in order in each section). | 380 // alphabetical order, or in one of the ifdefs (also in order in each section). |
382 | 381 |
383 } // namespace switches | 382 } // namespace switches |
384 | 383 |
385 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 384 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |