| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 extern const char kHostResolverRules[]; | 195 extern const char kHostResolverRules[]; |
| 196 extern const char kIgnoreGpuBlacklist[]; | 196 extern const char kIgnoreGpuBlacklist[]; |
| 197 extern const char kImport[]; | 197 extern const char kImport[]; |
| 198 extern const char kImportFromFile[]; | 198 extern const char kImportFromFile[]; |
| 199 extern const char kInProcessPlugins[]; | 199 extern const char kInProcessPlugins[]; |
| 200 extern const char kIncognito[]; | 200 extern const char kIncognito[]; |
| 201 extern const char kInstantURL[]; | 201 extern const char kInstantURL[]; |
| 202 extern const char kJavaScriptFlags[]; | 202 extern const char kJavaScriptFlags[]; |
| 203 extern const char kKeepAliveForTest[]; | 203 extern const char kKeepAliveForTest[]; |
| 204 extern const char kLoadExtension[]; | 204 extern const char kLoadExtension[]; |
| 205 extern const char kLoadOpencryptoki[]; |
| 205 extern const char kUninstallExtension[]; | 206 extern const char kUninstallExtension[]; |
| 206 extern const char kLogNetLog[]; | 207 extern const char kLogNetLog[]; |
| 207 extern const char kMakeDefaultBrowser[]; | 208 extern const char kMakeDefaultBrowser[]; |
| 208 extern const char kMediaCacheSize[]; | 209 extern const char kMediaCacheSize[]; |
| 209 extern const char kMemoryProfiling[]; | 210 extern const char kMemoryProfiling[]; |
| 210 extern const char kMessageLoopHistogrammer[]; | 211 extern const char kMessageLoopHistogrammer[]; |
| 211 extern const char kMetricsRecordingOnly[]; | 212 extern const char kMetricsRecordingOnly[]; |
| 212 extern const char kMinClearSiteDataFlashVersion[]; | 213 extern const char kMinClearSiteDataFlashVersion[]; |
| 213 extern const char kMultiProfiles[]; | 214 extern const char kMultiProfiles[]; |
| 214 extern const char kNaClDebugIP[]; | 215 extern const char kNaClDebugIP[]; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 #if defined(HAVE_XINPUT2) | 367 #if defined(HAVE_XINPUT2) |
| 367 extern const char kTouchDevices[]; | 368 extern const char kTouchDevices[]; |
| 368 #endif | 369 #endif |
| 369 | 370 |
| 370 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 371 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 371 // alphabetical order, or in one of the ifdefs (also in order in each section). | 372 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 372 | 373 |
| 373 } // namespace switches | 374 } // namespace switches |
| 374 | 375 |
| 375 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 376 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |