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 #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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 // Tells the diagnostics mode to do the requested recovery step(s). | 206 // Tells the diagnostics mode to do the requested recovery step(s). |
207 const char kDiagnosticsRecovery[] = "diagnostics-recovery"; | 207 const char kDiagnosticsRecovery[] = "diagnostics-recovery"; |
208 | 208 |
209 // When kEnableSettingsWindow is used, About is shown as an overlay in Settings | 209 // When kEnableSettingsWindow is used, About is shown as an overlay in Settings |
210 // instead of as a separate page, unless this flag is specified. | 210 // instead of as a separate page, unless this flag is specified. |
211 const char kDisableAboutInSettings[] = "disable-about-in-settings"; | 211 const char kDisableAboutInSettings[] = "disable-about-in-settings"; |
212 | 212 |
213 // Disables the experimental asynchronous DNS client. | 213 // Disables the experimental asynchronous DNS client. |
214 const char kDisableAsyncDns[] = "disable-async-dns"; | 214 const char kDisableAsyncDns[] = "disable-async-dns"; |
215 | 215 |
216 // Disables CNAME lookup of the host when generating the Kerberos SPN for a | |
217 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more | |
218 // background. | |
219 const char kDisableAuthNegotiateCnameLookup[] = | |
220 "disable-auth-negotiate-cname-lookup"; | |
221 | |
222 // Disable several subsystems which run network requests in the background. | 216 // Disable several subsystems which run network requests in the background. |
223 // This is for use when doing network performance testing to avoid noise in the | 217 // This is for use when doing network performance testing to avoid noise in the |
224 // measurements. | 218 // measurements. |
225 const char kDisableBackgroundNetworking[] = "disable-background-networking"; | 219 const char kDisableBackgroundNetworking[] = "disable-background-networking"; |
226 | 220 |
227 // Disables the bundled PPAPI version of Flash. | 221 // Disables the bundled PPAPI version of Flash. |
228 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash"; | 222 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash"; |
229 | 223 |
230 // Disable hardware encoding support for Cast Streaming. | 224 // Disable hardware encoding support for Cast Streaming. |
231 const char kDisableCastStreamingHWEncoding[] = | 225 const char kDisableCastStreamingHWEncoding[] = |
(...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1426 | 1420 |
1427 // ----------------------------------------------------------------------------- | 1421 // ----------------------------------------------------------------------------- |
1428 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1422 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1429 // | 1423 // |
1430 // You were going to just dump your switches here, weren't you? Instead, please | 1424 // You were going to just dump your switches here, weren't you? Instead, please |
1431 // put them in alphabetical order above, or in order inside the appropriate | 1425 // put them in alphabetical order above, or in order inside the appropriate |
1432 // ifdef at the bottom. The order should match the header. | 1426 // ifdef at the bottom. The order should match the header. |
1433 // ----------------------------------------------------------------------------- | 1427 // ----------------------------------------------------------------------------- |
1434 | 1428 |
1435 } // namespace switches | 1429 } // namespace switches |
OLD | NEW |