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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
256 extern const char kRemoteDebuggingPort[]; | 256 extern const char kRemoteDebuggingPort[]; |
257 extern const char kRestoreLastSession[]; | 257 extern const char kRestoreLastSession[]; |
258 extern const char kSbInfoURLPrefix[]; | 258 extern const char kSbInfoURLPrefix[]; |
259 extern const char kSbMacKeyURLPrefix[]; | 259 extern const char kSbMacKeyURLPrefix[]; |
260 extern const char kSbDisableAutoUpdate[]; | 260 extern const char kSbDisableAutoUpdate[]; |
261 extern const char kSbDisableDownloadProtection[]; | 261 extern const char kSbDisableDownloadProtection[]; |
262 extern const char kEnableSdch[]; | 262 extern const char kEnableSdch[]; |
263 extern const char kSearchInOmniboxHint[]; | 263 extern const char kSearchInOmniboxHint[]; |
264 extern const char kServiceAccountLsid[]; | 264 extern const char kServiceAccountLsid[]; |
265 extern const char kShowAutofillTypePredictions[]; | 265 extern const char kShowAutofillTypePredictions[]; |
266 extern const char kShowComponentExtensionsInOptions[]; | |
Aaron Boodman
2011/10/24 17:53:47
Can you make it just --show-component-options? Sli
Mihai Parparita -not on Chrome
2011/10/24 17:57:46
FWIW "show options for components", which isn't qu
| |
266 extern const char kShowCompositedLayerBorders[]; | 267 extern const char kShowCompositedLayerBorders[]; |
267 extern const char kShowCompositedLayerTree[]; | 268 extern const char kShowCompositedLayerTree[]; |
268 extern const char kShowFPSCounter[]; | 269 extern const char kShowFPSCounter[]; |
269 extern const char kShowIcons[]; | 270 extern const char kShowIcons[]; |
270 extern const char kSilentDumpOnDCHECK[]; | 271 extern const char kSilentDumpOnDCHECK[]; |
271 extern const char kSocketReusePolicy[]; | 272 extern const char kSocketReusePolicy[]; |
272 extern const char kStartMaximized[]; | 273 extern const char kStartMaximized[]; |
273 extern const char kSyncAllowInsecureXmppConnection[]; | 274 extern const char kSyncAllowInsecureXmppConnection[]; |
274 extern const char kSyncInvalidateXmppLogin[]; | 275 extern const char kSyncInvalidateXmppLogin[]; |
275 extern const char kSyncerThreadTimedStop[]; | 276 extern const char kSyncerThreadTimedStop[]; |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
371 bool IsPrintPreviewEnabled(); | 372 bool IsPrintPreviewEnabled(); |
372 | 373 |
373 bool IsInBrowserThumbnailingEnabled(); | 374 bool IsInBrowserThumbnailingEnabled(); |
374 | 375 |
375 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 376 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
376 // alphabetical order, or in one of the ifdefs (also in order in each section). | 377 // alphabetical order, or in one of the ifdefs (also in order in each section). |
377 | 378 |
378 } // namespace switches | 379 } // namespace switches |
379 | 380 |
380 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 381 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |