OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 // Causes the browser process to throw an assertion on startup. | 37 // Causes the browser process to throw an assertion on startup. |
38 const char kBrowserAssertTest[] = "assert-test"; | 38 const char kBrowserAssertTest[] = "assert-test"; |
39 | 39 |
40 // Causes the browser process to crash on startup. | 40 // Causes the browser process to crash on startup. |
41 const char kBrowserCrashTest[] = "crash-test"; | 41 const char kBrowserCrashTest[] = "crash-test"; |
42 | 42 |
43 // Path to the exe to run for the renderer and plugin subprocesses. | 43 // Path to the exe to run for the renderer and plugin subprocesses. |
44 const char kBrowserSubprocessPath[] = "browser-subprocess-path"; | 44 const char kBrowserSubprocessPath[] = "browser-subprocess-path"; |
45 | 45 |
| 46 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run |
| 47 // as a dependent process of the Chrome Frame plugin. |
| 48 const char kChromeFrame[] = "chrome-frame"; |
| 49 |
46 // The Country we should use. This is normally obtained from the operating | 50 // The Country we should use. This is normally obtained from the operating |
47 // system during first run and cached in the preferences afterwards. This is a | 51 // system during first run and cached in the preferences afterwards. This is a |
48 // string value, the 2 letter code from ISO 3166-1. | 52 // string value, the 2 letter code from ISO 3166-1. |
49 const char kCountry[] = "country"; | 53 const char kCountry[] = "country"; |
50 | 54 |
51 // Enables support to debug printing subsystem. | 55 // Enables support to debug printing subsystem. |
52 const char kDebugPrint[] = "debug-print"; | 56 const char kDebugPrint[] = "debug-print"; |
53 | 57 |
54 // Triggers a pletora of diagnostic modes. | 58 // Triggers a pletora of diagnostic modes. |
55 const char kDiagnostics[] = "diagnostics"; | 59 const char kDiagnostics[] = "diagnostics"; |
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 // | 677 // |
674 // You were going to just dump your switches here, weren't you? Instead, | 678 // You were going to just dump your switches here, weren't you? Instead, |
675 // please put them in alphabetical order above, or in order inside the | 679 // please put them in alphabetical order above, or in order inside the |
676 // appropriate ifdef at the bottom. The order should match the header. | 680 // appropriate ifdef at the bottom. The order should match the header. |
677 // ----------------------------------------------------------------------------- | 681 // ----------------------------------------------------------------------------- |
678 | 682 |
679 // Enable AutoFill++. | 683 // Enable AutoFill++. |
680 const char kEnableNewAutoFill[] = "enable-new-autofill"; | 684 const char kEnableNewAutoFill[] = "enable-new-autofill"; |
681 | 685 |
682 } // namespace switches | 686 } // namespace switches |
OLD | NEW |