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