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

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

Issue 185083002: Avoid persisting of QUIC server config information in Stable and Beta (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed rch's comments from Patch set 1 Created 6 years, 9 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
« no previous file with comments | « chrome/browser/resources/net_internals/quic_view.html ('k') | net/http/http_cache.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 // Disables support for the HTTPS over QUIC protocol. This is a temporary 417 // Disables support for the HTTPS over QUIC protocol. This is a temporary
418 // testing flag. This only has an effect if QUIC protocol is enabled. 418 // testing flag. This only has an effect if QUIC protocol is enabled.
419 const char kDisableQuicHttps[] = "disable-quic-https"; 419 const char kDisableQuicHttps[] = "disable-quic-https";
420 420
421 // Disable use of pacing of QUIC packets. 421 // Disable use of pacing of QUIC packets.
422 // This only has an effect if QUIC protocol is enabled. 422 // This only has an effect if QUIC protocol is enabled.
423 const char kDisableQuicPacing[] = "disable-quic-pacing"; 423 const char kDisableQuicPacing[] = "disable-quic-pacing";
424 424
425 // Disable use of Chromium's port selection for the ephemeral port via bind(). 425 // Disable use of Chromium's port selection for the ephemeral port via bind().
426 // This only has an effect if QUIC protocol is enabled. 426 // This only has an effect if QUIC protocol is enabled.
427 const char kDisableQuicPortSelection[] = "disable-quic-port_selection"; 427 const char kDisableQuicPortSelection[] = "disable-quic-port-selection";
428 428
429 // Prevents the URLs of BackgroundContents from being remembered and 429 // Prevents the URLs of BackgroundContents from being remembered and
430 // re-launched when the browser restarts. 430 // re-launched when the browser restarts.
431 const char kDisableRestoreBackgroundContents[] = 431 const char kDisableRestoreBackgroundContents[] =
432 "disable-restore-background-contents"; 432 "disable-restore-background-contents";
433 433
434 // Disables restoring session state (cookies, session storage, etc.) when 434 // Disables restoring session state (cookies, session storage, etc.) when
435 // restoring the browsing session. 435 // restoring the browsing session.
436 const char kDisableRestoreSessionState[] = "disable-restore-session-state"; 436 const char kDisableRestoreSessionState[] = "disable-restore-session-state";
437 437
(...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after
1667 1667
1668 // ----------------------------------------------------------------------------- 1668 // -----------------------------------------------------------------------------
1669 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1669 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1670 // 1670 //
1671 // You were going to just dump your switches here, weren't you? Instead, please 1671 // You were going to just dump your switches here, weren't you? Instead, please
1672 // put them in alphabetical order above, or in order inside the appropriate 1672 // put them in alphabetical order above, or in order inside the appropriate
1673 // ifdef at the bottom. The order should match the header. 1673 // ifdef at the bottom. The order should match the header.
1674 // ----------------------------------------------------------------------------- 1674 // -----------------------------------------------------------------------------
1675 1675
1676 } // namespace switches 1676 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/quic_view.html ('k') | net/http/http_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698