| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 extern const char kUninstallExtension[]; | 225 extern const char kUninstallExtension[]; |
| 226 extern const char kLogNetLog[]; | 226 extern const char kLogNetLog[]; |
| 227 extern const char kMakeDefaultBrowser[]; | 227 extern const char kMakeDefaultBrowser[]; |
| 228 extern const char kManaged[]; | 228 extern const char kManaged[]; |
| 229 extern const char kMediaCacheSize[]; | 229 extern const char kMediaCacheSize[]; |
| 230 extern const char kMemoryProfiling[]; | 230 extern const char kMemoryProfiling[]; |
| 231 extern const char kMessageLoopHistogrammer[]; | 231 extern const char kMessageLoopHistogrammer[]; |
| 232 extern const char kMetricsRecordingOnly[]; | 232 extern const char kMetricsRecordingOnly[]; |
| 233 extern const char kMultiProfiles[]; | 233 extern const char kMultiProfiles[]; |
| 234 extern const char kNaClGdb[]; | 234 extern const char kNaClGdb[]; |
| 235 extern const char kNaClGdbScript[]; |
| 235 extern const char kNaClLoaderCmdPrefix[]; | 236 extern const char kNaClLoaderCmdPrefix[]; |
| 236 extern const char kNetLogLevel[]; | 237 extern const char kNetLogLevel[]; |
| 237 extern const char kNoDefaultBrowserCheck[]; | 238 extern const char kNoDefaultBrowserCheck[]; |
| 238 extern const char kNoDisplayingInsecureContent[]; | 239 extern const char kNoDisplayingInsecureContent[]; |
| 239 extern const char kNoEvents[]; | 240 extern const char kNoEvents[]; |
| 240 extern const char kNoExperiments[]; | 241 extern const char kNoExperiments[]; |
| 241 extern const char kNoFirstRun[]; | 242 extern const char kNoFirstRun[]; |
| 242 extern const char kNoJsRandomness[]; | 243 extern const char kNoJsRandomness[]; |
| 243 extern const char kNoManaged[]; | 244 extern const char kNoManaged[]; |
| 244 extern const char kNoNetworkProfileWarning[]; | 245 extern const char kNoNetworkProfileWarning[]; |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 #else | 422 #else |
| 422 extern const char kEnablePrintPreview[]; | 423 extern const char kEnablePrintPreview[]; |
| 423 #endif | 424 #endif |
| 424 | 425 |
| 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 426 // 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). | 427 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 427 | 428 |
| 428 } // namespace switches | 429 } // namespace switches |
| 429 | 430 |
| 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 431 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |