| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 extern const char kPrerenderModeSwitchValueEnabled[]; | 282 extern const char kPrerenderModeSwitchValueEnabled[]; |
| 283 extern const char kPrerenderModeSwitchValuePrefetchOnly[]; | 283 extern const char kPrerenderModeSwitchValuePrefetchOnly[]; |
| 284 extern const char kProductVersion[]; | 284 extern const char kProductVersion[]; |
| 285 extern const char kProfileDesktopShortcuts[]; | 285 extern const char kProfileDesktopShortcuts[]; |
| 286 extern const char kProfileDirectory[]; | 286 extern const char kProfileDirectory[]; |
| 287 extern const char kProfilingAtStart[]; | 287 extern const char kProfilingAtStart[]; |
| 288 extern const char kProfilingFile[]; | 288 extern const char kProfilingFile[]; |
| 289 extern const char kProfilingFlush[]; | 289 extern const char kProfilingFlush[]; |
| 290 extern const char kProfilingOutputFile[]; | 290 extern const char kProfilingOutputFile[]; |
| 291 extern const char kPromoServerURL[]; | 291 extern const char kPromoServerURL[]; |
| 292 extern const char kPromptForExternalExtensions[]; |
| 292 extern const char kProtector[]; | 293 extern const char kProtector[]; |
| 293 extern const char kProxyAutoDetect[]; | 294 extern const char kProxyAutoDetect[]; |
| 294 extern const char kProxyBypassList[]; | 295 extern const char kProxyBypassList[]; |
| 295 extern const char kProxyPacUrl[]; | 296 extern const char kProxyPacUrl[]; |
| 296 extern const char kProxyServer[]; | 297 extern const char kProxyServer[]; |
| 297 extern const char kPurgeMemoryButton[]; | 298 extern const char kPurgeMemoryButton[]; |
| 298 extern const char kRecordStats[]; | 299 extern const char kRecordStats[]; |
| 299 extern const char kRecordMode[]; | 300 extern const char kRecordMode[]; |
| 300 extern const char kReloadKilledTabs[]; | 301 extern const char kReloadKilledTabs[]; |
| 301 extern const char kRemoteDebuggingFrontend[]; | 302 extern const char kRemoteDebuggingFrontend[]; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 | 465 |
| 465 namespace chrome { | 466 namespace chrome { |
| 466 | 467 |
| 467 // Returns true if the new frameless constrained window style is enabled. | 468 // Returns true if the new frameless constrained window style is enabled. |
| 468 // TODO(sail): Remove this once the feature is fully baked. | 469 // TODO(sail): Remove this once the feature is fully baked. |
| 469 bool IsFramelessConstrainedDialogEnabled(); | 470 bool IsFramelessConstrainedDialogEnabled(); |
| 470 | 471 |
| 471 } // namespace chrome | 472 } // namespace chrome |
| 472 | 473 |
| 473 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 474 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |