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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 // TODO(kalman): Add to about:flags when UI for syncing extension settings has | 171 // TODO(kalman): Add to about:flags when UI for syncing extension settings has |
172 // been figured out. | 172 // been figured out. |
173 extern const char kEnableSyncExtensionSettings[]; | 173 extern const char kEnableSyncExtensionSettings[]; |
174 extern const char kEnableSyncOAuth[]; | 174 extern const char kEnableSyncOAuth[]; |
175 extern const char kEnableSyncTabs[]; | 175 extern const char kEnableSyncTabs[]; |
176 extern const char kEnableSyncTabsForOtherClients[]; | 176 extern const char kEnableSyncTabsForOtherClients[]; |
177 extern const char kEnableTabGroupsContextMenu[]; | 177 extern const char kEnableTabGroupsContextMenu[]; |
178 extern const char kEnableTopSites[]; | 178 extern const char kEnableTopSites[]; |
179 extern const char kEnableWatchdog[]; | 179 extern const char kEnableWatchdog[]; |
180 extern const char kEnableWebSocketOverSpdy[]; | 180 extern const char kEnableWebSocketOverSpdy[]; |
| 181 extern const char kEnableWebStoreLink[]; |
181 extern const char kExperimentalSpellcheckerFeatures[]; | 182 extern const char kExperimentalSpellcheckerFeatures[]; |
182 extern const char kExplicitlyAllowedPorts[]; | 183 extern const char kExplicitlyAllowedPorts[]; |
183 extern const char kExtensionProcess[]; | 184 extern const char kExtensionProcess[]; |
184 extern const char kExtensionsUpdateFrequency[]; | 185 extern const char kExtensionsUpdateFrequency[]; |
185 extern const char kExternalAutofillPopup[]; | 186 extern const char kExternalAutofillPopup[]; |
186 extern const char kFlagSwitchesBegin[]; | 187 extern const char kFlagSwitchesBegin[]; |
187 extern const char kFlagSwitchesEnd[]; | 188 extern const char kFlagSwitchesEnd[]; |
188 extern const char kFeedbackServer[]; | 189 extern const char kFeedbackServer[]; |
189 extern const char kFileDescriptorLimit[]; | 190 extern const char kFileDescriptorLimit[]; |
190 extern const char kFocusExistingTabOnOpen[]; | 191 extern const char kFocusExistingTabOnOpen[]; |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 #if defined(USE_AURA) | 401 #if defined(USE_AURA) |
401 extern const char kTestCompositor[]; | 402 extern const char kTestCompositor[]; |
402 #endif | 403 #endif |
403 | 404 |
404 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 405 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
405 // alphabetical order, or in one of the ifdefs (also in order in each section). | 406 // alphabetical order, or in one of the ifdefs (also in order in each section). |
406 | 407 |
407 } // namespace switches | 408 } // namespace switches |
408 | 409 |
409 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |