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 kProfileDirectory[]; | 285 extern const char kProfileDirectory[]; |
286 extern const char kProfilingAtStart[]; | 286 extern const char kProfilingAtStart[]; |
287 extern const char kProfilingFile[]; | 287 extern const char kProfilingFile[]; |
288 extern const char kProfilingFlush[]; | 288 extern const char kProfilingFlush[]; |
289 extern const char kProfilingOutputFile[]; | 289 extern const char kProfilingOutputFile[]; |
290 extern const char kPromoServerURL[]; | 290 extern const char kPromoServerURL[]; |
291 extern const char kPromptForExternalExtensions[]; | 291 extern const char kPromptForExternalExtensions[]; |
292 extern const char kProtector[]; | |
293 extern const char kProxyAutoDetect[]; | 292 extern const char kProxyAutoDetect[]; |
294 extern const char kProxyBypassList[]; | 293 extern const char kProxyBypassList[]; |
295 extern const char kProxyPacUrl[]; | 294 extern const char kProxyPacUrl[]; |
296 extern const char kProxyServer[]; | 295 extern const char kProxyServer[]; |
297 extern const char kPurgeMemoryButton[]; | 296 extern const char kPurgeMemoryButton[]; |
298 extern const char kRecordStats[]; | 297 extern const char kRecordStats[]; |
299 extern const char kRecordMode[]; | 298 extern const char kRecordMode[]; |
300 extern const char kRemoteDebuggingFrontend[]; | 299 extern const char kRemoteDebuggingFrontend[]; |
301 extern const char kRendererPrintPreview[]; | 300 extern const char kRendererPrintPreview[]; |
302 extern const char kResetVariationState[]; | 301 extern const char kResetVariationState[]; |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 | 467 |
469 namespace chrome { | 468 namespace chrome { |
470 | 469 |
471 // Returns true if the chrome style dialog is enabled. | 470 // Returns true if the chrome style dialog is enabled. |
472 // TODO(sail): Remove this once the feature is fully baked. | 471 // TODO(sail): Remove this once the feature is fully baked. |
473 bool UseChromeStyleDialogs(); | 472 bool UseChromeStyleDialogs(); |
474 | 473 |
475 } // namespace chrome | 474 } // namespace chrome |
476 | 475 |
477 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 476 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |