| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 extern const char kPrerenderModeSwitchValueDisabled[]; | 275 extern const char kPrerenderModeSwitchValueDisabled[]; |
| 276 extern const char kPrerenderModeSwitchValueEnabled[]; | 276 extern const char kPrerenderModeSwitchValueEnabled[]; |
| 277 extern const char kPrerenderModeSwitchValuePrefetchOnly[]; | 277 extern const char kPrerenderModeSwitchValuePrefetchOnly[]; |
| 278 extern const char kProductVersion[]; | 278 extern const char kProductVersion[]; |
| 279 extern const char kProfileDirectory[]; | 279 extern const char kProfileDirectory[]; |
| 280 extern const char kProfilingAtStart[]; | 280 extern const char kProfilingAtStart[]; |
| 281 extern const char kProfilingFile[]; | 281 extern const char kProfilingFile[]; |
| 282 extern const char kProfilingFlush[]; | 282 extern const char kProfilingFlush[]; |
| 283 extern const char kProfilingOutputFile[]; | 283 extern const char kProfilingOutputFile[]; |
| 284 extern const char kPromoServerURL[]; | 284 extern const char kPromoServerURL[]; |
| 285 extern const char kPromptForExternalExtensions[]; |
| 285 extern const char kProtector[]; | 286 extern const char kProtector[]; |
| 286 extern const char kProxyAutoDetect[]; | 287 extern const char kProxyAutoDetect[]; |
| 287 extern const char kProxyBypassList[]; | 288 extern const char kProxyBypassList[]; |
| 288 extern const char kProxyPacUrl[]; | 289 extern const char kProxyPacUrl[]; |
| 289 extern const char kProxyServer[]; | 290 extern const char kProxyServer[]; |
| 290 extern const char kPurgeMemoryButton[]; | 291 extern const char kPurgeMemoryButton[]; |
| 291 extern const char kRecordStats[]; | 292 extern const char kRecordStats[]; |
| 292 extern const char kRecordMode[]; | 293 extern const char kRecordMode[]; |
| 293 extern const char kReloadKilledTabs[]; | 294 extern const char kReloadKilledTabs[]; |
| 294 extern const char kRemoteDebuggingFrontend[]; | 295 extern const char kRemoteDebuggingFrontend[]; |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 | 456 |
| 456 namespace chrome { | 457 namespace chrome { |
| 457 | 458 |
| 458 // Returns true if the new frameless constrained window style is enabled. | 459 // Returns true if the new frameless constrained window style is enabled. |
| 459 // TODO(sail): Remove this once the feature is fully baked. | 460 // TODO(sail): Remove this once the feature is fully baked. |
| 460 bool IsFramelessConstrainedDialogEnabled(); | 461 bool IsFramelessConstrainedDialogEnabled(); |
| 461 | 462 |
| 462 } // namespace chrome | 463 } // namespace chrome |
| 463 | 464 |
| 464 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 465 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |