| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 // device management backend. | 243 // device management backend. |
| 244 const char kDeviceManagementUrl[] = "device-management-url"; | 244 const char kDeviceManagementUrl[] = "device-management-url"; |
| 245 | 245 |
| 246 // Triggers a plethora of diagnostic modes. | 246 // Triggers a plethora of diagnostic modes. |
| 247 const char kDiagnostics[] = "diagnostics"; | 247 const char kDiagnostics[] = "diagnostics"; |
| 248 | 248 |
| 249 // Replaces the audio IPC layer for <audio> and <video> with a mock audio | 249 // Replaces the audio IPC layer for <audio> and <video> with a mock audio |
| 250 // device, useful when using remote desktop or machines without sound cards. | 250 // device, useful when using remote desktop or machines without sound cards. |
| 251 // This is temporary until we fix the underlying problem. | 251 // This is temporary until we fix the underlying problem. |
| 252 | 252 |
| 253 // Disables the experimental asynchronous DNS client. |
| 254 const char kDisableAsyncDns[] = "disable-async-dns"; |
| 255 |
| 253 // Disables asynchronous spellchecking features for all time. Disabling this | 256 // Disables asynchronous spellchecking features for all time. Disabling this |
| 254 // feature also disables unified spellchecking. | 257 // feature also disables unified spellchecking. |
| 255 const char kDisableAsynchronousSpellChecking[] = | 258 const char kDisableAsynchronousSpellChecking[] = |
| 256 "disable-asynchronous-spellchecking"; | 259 "disable-asynchronous-spellchecking"; |
| 257 | 260 |
| 258 // Disables CNAME lookup of the host when generating the Kerberos SPN for a | 261 // Disables CNAME lookup of the host when generating the Kerberos SPN for a |
| 259 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more | 262 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more |
| 260 // background. | 263 // background. |
| 261 const char kDisableAuthNegotiateCnameLookup[] = | 264 const char kDisableAuthNegotiateCnameLookup[] = |
| 262 "disable-auth-negotiate-cname-lookup"; | 265 "disable-auth-negotiate-cname-lookup"; |
| (...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1614 | 1617 |
| 1615 // ----------------------------------------------------------------------------- | 1618 // ----------------------------------------------------------------------------- |
| 1616 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1619 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1617 // | 1620 // |
| 1618 // You were going to just dump your switches here, weren't you? Instead, please | 1621 // You were going to just dump your switches here, weren't you? Instead, please |
| 1619 // put them in alphabetical order above, or in order inside the appropriate | 1622 // put them in alphabetical order above, or in order inside the appropriate |
| 1620 // ifdef at the bottom. The order should match the header. | 1623 // ifdef at the bottom. The order should match the header. |
| 1621 // ----------------------------------------------------------------------------- | 1624 // ----------------------------------------------------------------------------- |
| 1622 | 1625 |
| 1623 } // namespace switches | 1626 } // namespace switches |
| OLD | NEW |