OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 const char kAuthSchemes[] = "auth-schemes"; | 84 const char kAuthSchemes[] = "auth-schemes"; |
85 | 85 |
86 // Whitelist of servers which NTLM and Negotiate can automatically authenticate | 86 // Whitelist of servers which NTLM and Negotiate can automatically authenticate |
87 // with using the default credentials of the currently logged in user. | 87 // with using the default credentials of the currently logged in user. |
88 const char kAuthServerWhitelist[] = "auth-server-whitelist"; | 88 const char kAuthServerWhitelist[] = "auth-server-whitelist"; |
89 | 89 |
90 // The value of this switch tells the app to listen for and broadcast | 90 // The value of this switch tells the app to listen for and broadcast |
91 // automation-related messages on IPC channel with the given ID. | 91 // automation-related messages on IPC channel with the given ID. |
92 const char kAutomationClientChannelID[] = "automation-channel"; | 92 const char kAutomationClientChannelID[] = "automation-channel"; |
93 | 93 |
| 94 // Causes the automation provider to reinitialize its IPC channel instead of |
| 95 // shutting down when a client disconnects. |
| 96 const char kAutomationReinitializeOnChannelError[] = |
| 97 "automation-reinitialize-on-channel-error"; |
| 98 |
94 // When the option to block third-party cookies from being set is enabled, | 99 // When the option to block third-party cookies from being set is enabled, |
95 // also block third-party cookies from being read. | 100 // also block third-party cookies from being read. |
96 const char kBlockReadingThirdPartyCookies[] = | 101 const char kBlockReadingThirdPartyCookies[] = |
97 "block-reading-third-party-cookies"; | 102 "block-reading-third-party-cookies"; |
98 | 103 |
99 // Causes the browser process to throw an assertion on startup. | 104 // Causes the browser process to throw an assertion on startup. |
100 const char kBrowserAssertTest[] = "assert-test"; | 105 const char kBrowserAssertTest[] = "assert-test"; |
101 | 106 |
102 // Causes the browser process to crash on startup. | 107 // Causes the browser process to crash on startup. |
103 const char kBrowserCrashTest[] = "crash-test"; | 108 const char kBrowserCrashTest[] = "crash-test"; |
(...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 | 1239 |
1235 // ----------------------------------------------------------------------------- | 1240 // ----------------------------------------------------------------------------- |
1236 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1241 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1237 // | 1242 // |
1238 // You were going to just dump your switches here, weren't you? Instead, | 1243 // You were going to just dump your switches here, weren't you? Instead, |
1239 // please put them in alphabetical order above, or in order inside the | 1244 // please put them in alphabetical order above, or in order inside the |
1240 // appropriate ifdef at the bottom. The order should match the header. | 1245 // appropriate ifdef at the bottom. The order should match the header. |
1241 // ----------------------------------------------------------------------------- | 1246 // ----------------------------------------------------------------------------- |
1242 | 1247 |
1243 } // namespace switches | 1248 } // namespace switches |
OLD | NEW |