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

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

Issue 15896025: Change --origin-port-to-force-quic-on to --origin-to-force-quic-on. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/common/chrome_switches.h ('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 9
10 namespace switches { 10 namespace switches {
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 // third-party cookies from being set. 1034 // third-party cookies from being set.
1035 const char kOnlyBlockSettingThirdPartyCookies[] = 1035 const char kOnlyBlockSettingThirdPartyCookies[] =
1036 "only-block-setting-third-party-cookies"; 1036 "only-block-setting-third-party-cookies";
1037 1037
1038 // Launches URL in new browser window. 1038 // Launches URL in new browser window.
1039 const char kOpenInNewWindow[] = "new-window"; 1039 const char kOpenInNewWindow[] = "new-window";
1040 1040
1041 // Simulates an organic Chrome install. 1041 // Simulates an organic Chrome install.
1042 const char kOrganicInstall[] = "organic"; 1042 const char kOrganicInstall[] = "organic";
1043 1043
1044 // Force use of QUIC for requests over the specified port. 1044 // Force use of QUIC for requests to the specified origin.
1045 const char kOriginPortToForceQuicOn[] = "origin-port-to-force-quic-on"; 1045 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on";
1046 1046
1047 // The time that a new chrome process which is delegating to an already running 1047 // The time that a new chrome process which is delegating to an already running
1048 // chrome process started. (See ProcessSingleton for more details.) 1048 // chrome process started. (See ProcessSingleton for more details.)
1049 const char kOriginalProcessStartTime[] = "original-process-start-time"; 1049 const char kOriginalProcessStartTime[] = "original-process-start-time";
1050 1050
1051 // Packages an extension to a .crx installable file from a given directory. 1051 // Packages an extension to a .crx installable file from a given directory.
1052 const char kPackExtension[] = "pack-extension"; 1052 const char kPackExtension[] = "pack-extension";
1053 1053
1054 // Optional PEM private key to use in signing packaged .crx. 1054 // Optional PEM private key to use in signing packaged .crx.
1055 const char kPackExtensionKey[] = "pack-extension-key"; 1055 const char kPackExtensionKey[] = "pack-extension-key";
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
1593 1593
1594 // ----------------------------------------------------------------------------- 1594 // -----------------------------------------------------------------------------
1595 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1595 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1596 // 1596 //
1597 // You were going to just dump your switches here, weren't you? Instead, please 1597 // You were going to just dump your switches here, weren't you? Instead, please
1598 // put them in alphabetical order above, or in order inside the appropriate 1598 // put them in alphabetical order above, or in order inside the appropriate
1599 // ifdef at the bottom. The order should match the header. 1599 // ifdef at the bottom. The order should match the header.
1600 // ----------------------------------------------------------------------------- 1600 // -----------------------------------------------------------------------------
1601 1601
1602 } // namespace switches 1602 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/http/http_network_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698