Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 10828373: [net] Add AsyncDns field trial. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better var names Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 // device management backend. 240 // device management backend.
241 const char kDeviceManagementUrl[] = "device-management-url"; 241 const char kDeviceManagementUrl[] = "device-management-url";
242 242
243 // Triggers a plethora of diagnostic modes. 243 // Triggers a plethora of diagnostic modes.
244 const char kDiagnostics[] = "diagnostics"; 244 const char kDiagnostics[] = "diagnostics";
245 245
246 // Replaces the audio IPC layer for <audio> and <video> with a mock audio 246 // Replaces the audio IPC layer for <audio> and <video> with a mock audio
247 // device, useful when using remote desktop or machines without sound cards. 247 // device, useful when using remote desktop or machines without sound cards.
248 // This is temporary until we fix the underlying problem. 248 // This is temporary until we fix the underlying problem.
249 249
250 // Enables the experimental asynchronous DNS client.
251 const char kDisableAsyncDns[] = "disable-async-dns";
252
250 // Disables asynchronous spellchecking features for all time. Disabling this 253 // Disables asynchronous spellchecking features for all time. Disabling this
251 // feature also disables unified spellchecking. 254 // feature also disables unified spellchecking.
252 const char kDisableAsynchronousSpellChecking[] = 255 const char kDisableAsynchronousSpellChecking[] =
253 "disable-asynchronous-spellchecking"; 256 "disable-asynchronous-spellchecking";
254 257
255 // Disables CNAME lookup of the host when generating the Kerberos SPN for a 258 // Disables CNAME lookup of the host when generating the Kerberos SPN for a
256 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more 259 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more
257 // background. 260 // background.
258 const char kDisableAuthNegotiateCnameLookup[] = 261 const char kDisableAuthNegotiateCnameLookup[] =
259 "disable-auth-negotiate-cname-lookup"; 262 "disable-auth-negotiate-cname-lookup";
(...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1578 1581
1579 // ----------------------------------------------------------------------------- 1582 // -----------------------------------------------------------------------------
1580 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1583 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1581 // 1584 //
1582 // You were going to just dump your switches here, weren't you? Instead, please 1585 // You were going to just dump your switches here, weren't you? Instead, please
1583 // put them in alphabetical order above, or in order inside the appropriate 1586 // put them in alphabetical order above, or in order inside the appropriate
1584 // ifdef at the bottom. The order should match the header. 1587 // ifdef at the bottom. The order should match the header.
1585 // ----------------------------------------------------------------------------- 1588 // -----------------------------------------------------------------------------
1586 1589
1587 } // namespace switches 1590 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698