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

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

Issue 10913238: SPDY proxy authentication support. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Formatting fixups. Created 8 years, 2 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/common/chrome_switches.h ('k') | chrome/common/pref_names.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 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1202 // Simulates an update being available. 1202 // Simulates an update being available.
1203 const char kSimulateUpgrade[] = "simulate-upgrade"; 1203 const char kSimulateUpgrade[] = "simulate-upgrade";
1204 1204
1205 // Replaces the buffered data source for <audio> and <video> with a simplified 1205 // Replaces the buffered data source for <audio> and <video> with a simplified
1206 // resource loader that downloads the entire resource into memory. 1206 // resource loader that downloads the entire resource into memory.
1207 1207
1208 // Socket reuse policy. The value should be of type enum 1208 // Socket reuse policy. The value should be of type enum
1209 // ClientSocketReusePolicy. 1209 // ClientSocketReusePolicy.
1210 const char kSocketReusePolicy[] = "socket-reuse-policy"; 1210 const char kSocketReusePolicy[] = "socket-reuse-policy";
1211 1211
1212 // Origin for which SpdyProxy authentication is supported.
1213 const char kSpdyProxyOrigin[] = "spdy-proxy-origin";
1214
1212 // Speculative resource prefetching. 1215 // Speculative resource prefetching.
1213 const char kSpeculativeResourcePrefetching[] = 1216 const char kSpeculativeResourcePrefetching[] =
1214 "speculative-resource-prefetching"; 1217 "speculative-resource-prefetching";
1215 1218
1216 // Speculative resource prefetching is disabled. 1219 // Speculative resource prefetching is disabled.
1217 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; 1220 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled";
1218 1221
1219 // Speculative resource prefetching will only learn about resources that need to 1222 // Speculative resource prefetching will only learn about resources that need to
1220 // be prefetched but will not prefetch them. 1223 // be prefetched but will not prefetch them.
1221 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; 1224 const char kSpeculativeResourcePrefetchingLearning[] = "learning";
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
1580 1583
1581 // ----------------------------------------------------------------------------- 1584 // -----------------------------------------------------------------------------
1582 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1585 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1583 // 1586 //
1584 // You were going to just dump your switches here, weren't you? Instead, please 1587 // You were going to just dump your switches here, weren't you? Instead, please
1585 // put them in alphabetical order above, or in order inside the appropriate 1588 // put them in alphabetical order above, or in order inside the appropriate
1586 // ifdef at the bottom. The order should match the header. 1589 // ifdef at the bottom. The order should match the header.
1587 // ----------------------------------------------------------------------------- 1590 // -----------------------------------------------------------------------------
1588 1591
1589 } // namespace switches 1592 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698