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