| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 extern const char kEnableSignedCertificateTimestampsViewer[]; | 218 extern const char kEnableSignedCertificateTimestampsViewer[]; |
| 219 extern const char kEnableSpdy4a2[]; | 219 extern const char kEnableSpdy4a2[]; |
| 220 extern const char kEnableSpellingAutoCorrect[]; | 220 extern const char kEnableSpellingAutoCorrect[]; |
| 221 extern const char kEnableSpellingFeedbackFieldTrial[]; | 221 extern const char kEnableSpellingFeedbackFieldTrial[]; |
| 222 extern const char kEnableStackedTabStrip[]; | 222 extern const char kEnableStackedTabStrip[]; |
| 223 extern const char kEnableStreamlinedHostedApps[]; | 223 extern const char kEnableStreamlinedHostedApps[]; |
| 224 extern const char kEnableSuggestionsTabPage[]; | 224 extern const char kEnableSuggestionsTabPage[]; |
| 225 extern const char kEnableSyncAppList[]; | 225 extern const char kEnableSyncAppList[]; |
| 226 extern const char kEnableSyncArticles[]; | 226 extern const char kEnableSyncArticles[]; |
| 227 extern const char kEnableSyncSyncedNotifications[]; | 227 extern const char kEnableSyncSyncedNotifications[]; |
| 228 extern const char kEnableTabGroupsContextMenu[]; | |
| 229 extern const char kEnableThumbnailRetargeting[]; | 228 extern const char kEnableThumbnailRetargeting[]; |
| 230 extern const char kEnableTranslateNewUX[]; | 229 extern const char kEnableTranslateNewUX[]; |
| 231 extern const char kEnableUnrestrictedSSL3Fallback[]; | 230 extern const char kEnableUnrestrictedSSL3Fallback[]; |
| 232 extern const char kEnableUserAlternateProtocolPorts[]; | 231 extern const char kEnableUserAlternateProtocolPorts[]; |
| 233 extern const char kEnableWatchdog[]; | 232 extern const char kEnableWatchdog[]; |
| 234 extern const char kEnableWebSocketOverSpdy[]; | 233 extern const char kEnableWebSocketOverSpdy[]; |
| 235 extern const char kExplicitlyAllowedPorts[]; | 234 extern const char kExplicitlyAllowedPorts[]; |
| 236 extern const char kExtensionsInstallVerification[]; | 235 extern const char kExtensionsInstallVerification[]; |
| 237 extern const char kExtensionsNotWebstore[]; | 236 extern const char kExtensionsNotWebstore[]; |
| 238 extern const char kExtensionsUpdateFrequency[]; | 237 extern const char kExtensionsUpdateFrequency[]; |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 #else | 470 #else |
| 472 extern const char kEnablePrintPreview[]; | 471 extern const char kEnablePrintPreview[]; |
| 473 #endif | 472 #endif |
| 474 | 473 |
| 475 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 474 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 476 // alphabetical order, or in one of the ifdefs (also in order in each section). | 475 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 477 | 476 |
| 478 } // namespace switches | 477 } // namespace switches |
| 479 | 478 |
| 480 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 479 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |