| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 extern const char kEnableSdch[]; | 174 extern const char kEnableSdch[]; |
| 175 extern const char kEnableSettingsApp[]; | 175 extern const char kEnableSettingsApp[]; |
| 176 extern const char kEnableSpdy3[]; | 176 extern const char kEnableSpdy3[]; |
| 177 extern const char kEnableSpdyCredentialFrames[]; | 177 extern const char kEnableSpdyCredentialFrames[]; |
| 178 extern const char kEnableSpellingAutoCorrect[]; | 178 extern const char kEnableSpellingAutoCorrect[]; |
| 179 extern const char kEnableStackedTabStrip[]; | 179 extern const char kEnableStackedTabStrip[]; |
| 180 extern const char kEnableSuggestionsTabPage[]; | 180 extern const char kEnableSuggestionsTabPage[]; |
| 181 extern const char kEnableTabGroupsContextMenu[]; | 181 extern const char kEnableTabGroupsContextMenu[]; |
| 182 extern const char kEnableWatchdog[]; | 182 extern const char kEnableWatchdog[]; |
| 183 extern const char kEnableWebSocketOverSpdy[]; | 183 extern const char kEnableWebSocketOverSpdy[]; |
| 184 extern const char kEnableWebView[]; |
| 184 extern const char kEventPageIdleTime[]; | 185 extern const char kEventPageIdleTime[]; |
| 185 extern const char kEventPageUnloadingTime[]; | 186 extern const char kEventPageUnloadingTime[]; |
| 186 extern const char kExplicitlyAllowedPorts[]; | 187 extern const char kExplicitlyAllowedPorts[]; |
| 187 extern const char kExtensionProcess[]; | 188 extern const char kExtensionProcess[]; |
| 188 extern const char kExtensionsUpdateFrequency[]; | 189 extern const char kExtensionsUpdateFrequency[]; |
| 189 extern const char kFlagSwitchesBegin[]; | 190 extern const char kFlagSwitchesBegin[]; |
| 190 extern const char kFlagSwitchesEnd[]; | 191 extern const char kFlagSwitchesEnd[]; |
| 191 extern const char kFeedbackServer[]; | 192 extern const char kFeedbackServer[]; |
| 192 extern const char kFileDescriptorLimit[]; | 193 extern const char kFileDescriptorLimit[]; |
| 193 extern const char kFirstRun[]; | 194 extern const char kFirstRun[]; |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 | 455 |
| 455 namespace chrome { | 456 namespace chrome { |
| 456 | 457 |
| 457 // Returns true if the new frameless constrained window style is enabled. | 458 // Returns true if the new frameless constrained window style is enabled. |
| 458 // TODO(sail): Remove this once the feature is fully baked. | 459 // TODO(sail): Remove this once the feature is fully baked. |
| 459 bool IsFramelessConstrainedDialogEnabled(); | 460 bool IsFramelessConstrainedDialogEnabled(); |
| 460 | 461 |
| 461 } // namespace chrome | 462 } // namespace chrome |
| 462 | 463 |
| 463 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 464 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |