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

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

Issue 1808303005: QUIC - extend origin-to-force-quic-on command line option to accept list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments for Patch Set 1 Created 4 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
« no previous file with comments | « chrome/browser/resources/net_internals/quic_view.html ('k') | net/http/http_network_session.h » ('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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 const char kNoSupervisedUserAcknowledgmentCheck[] = 764 const char kNoSupervisedUserAcknowledgmentCheck[] =
765 "no-managed-user-acknowledgment-check"; 765 "no-managed-user-acknowledgment-check";
766 766
767 // Specifies the maximum number of threads to use for running the Proxy 767 // Specifies the maximum number of threads to use for running the Proxy
768 // Autoconfig (PAC) script. 768 // Autoconfig (PAC) script.
769 const char kNumPacThreads[] = "num-pac-threads"; 769 const char kNumPacThreads[] = "num-pac-threads";
770 770
771 // Launches URL in new browser window. 771 // Launches URL in new browser window.
772 const char kOpenInNewWindow[] = "new-window"; 772 const char kOpenInNewWindow[] = "new-window";
773 773
774 // Force use of QUIC for requests to the specified origin. 774 // Specifies a comma separated list of host/port pairs to force use of QUIC.
775 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on"; 775 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on";
776 776
777 // The time that a new chrome process which is delegating to an already running 777 // The time that a new chrome process which is delegating to an already running
778 // chrome process started. (See ProcessSingleton for more details.) 778 // chrome process started. (See ProcessSingleton for more details.)
779 const char kOriginalProcessStartTime[] = "original-process-start-time"; 779 const char kOriginalProcessStartTime[] = "original-process-start-time";
780 780
781 // Packages an extension to a .crx installable file from a given directory. 781 // Packages an extension to a .crx installable file from a given directory.
782 const char kPackExtension[] = "pack-extension"; 782 const char kPackExtension[] = "pack-extension";
783 783
784 // Optional PEM private key to use in signing packaged .crx. 784 // Optional PEM private key to use in signing packaged .crx.
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 1360
1361 // ----------------------------------------------------------------------------- 1361 // -----------------------------------------------------------------------------
1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1363 // 1363 //
1364 // You were going to just dump your switches here, weren't you? Instead, please 1364 // You were going to just dump your switches here, weren't you? Instead, please
1365 // put them in alphabetical order above, or in order inside the appropriate 1365 // put them in alphabetical order above, or in order inside the appropriate
1366 // ifdef at the bottom. The order should match the header. 1366 // ifdef at the bottom. The order should match the header.
1367 // ----------------------------------------------------------------------------- 1367 // -----------------------------------------------------------------------------
1368 1368
1369 } // namespace switches 1369 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/quic_view.html ('k') | net/http/http_network_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698