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 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 extern const char kLoadExtension[]; | 241 extern const char kLoadExtension[]; |
242 extern const char kMakeDefaultBrowser[]; | 242 extern const char kMakeDefaultBrowser[]; |
243 extern const char kManagedUserId[]; | 243 extern const char kManagedUserId[]; |
244 extern const char kManagedUserSyncToken[]; | 244 extern const char kManagedUserSyncToken[]; |
245 extern const char kManualEnhancedBookmarks[]; | 245 extern const char kManualEnhancedBookmarks[]; |
246 extern const char kManualEnhancedBookmarksOptout[]; | 246 extern const char kManualEnhancedBookmarksOptout[]; |
247 extern const char kMediaCacheSize[]; | 247 extern const char kMediaCacheSize[]; |
248 extern const char kMemoryProfiling[]; | 248 extern const char kMemoryProfiling[]; |
249 extern const char kMessageLoopHistogrammer[]; | 249 extern const char kMessageLoopHistogrammer[]; |
250 extern const char kMetricsRecordingOnly[]; | 250 extern const char kMetricsRecordingOnly[]; |
251 extern const char kMultiProfiles[]; | 251 extern const char kMultiProfilesObsolete[]; |
252 extern const char kNetLogLevel[]; | 252 extern const char kNetLogLevel[]; |
253 extern const char kNoDefaultBrowserCheck[]; | 253 extern const char kNoDefaultBrowserCheck[]; |
254 extern const char kNoDisplayingInsecureContent[]; | 254 extern const char kNoDisplayingInsecureContent[]; |
255 extern const char kNoEvents[]; | 255 extern const char kNoEvents[]; |
256 extern const char kNoExperiments[]; | 256 extern const char kNoExperiments[]; |
257 extern const char kNoFirstRun[]; | 257 extern const char kNoFirstRun[]; |
258 extern const char kNoJsRandomness[]; | 258 extern const char kNoJsRandomness[]; |
259 extern const char kNoNetworkProfileWarning[]; | 259 extern const char kNoNetworkProfileWarning[]; |
260 extern const char kNoProxyServer[]; | 260 extern const char kNoProxyServer[]; |
261 extern const char kNoPings[]; | 261 extern const char kNoPings[]; |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 #else | 421 #else |
422 extern const char kEnablePrintPreview[]; | 422 extern const char kEnablePrintPreview[]; |
423 #endif | 423 #endif |
424 | 424 |
425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
426 // alphabetical order, or in one of the ifdefs (also in order in each section). | 426 // alphabetical order, or in one of the ifdefs (also in order in each section). |
427 | 427 |
428 } // namespace switches | 428 } // namespace switches |
429 | 429 |
430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |