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

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: Created 8 years, 3 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
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 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 // Simulates an update being available. 1208 // Simulates an update being available.
1209 const char kSimulateUpgrade[] = "simulate-upgrade"; 1209 const char kSimulateUpgrade[] = "simulate-upgrade";
1210 1210
1211 // Replaces the buffered data source for <audio> and <video> with a simplified 1211 // Replaces the buffered data source for <audio> and <video> with a simplified
1212 // resource loader that downloads the entire resource into memory. 1212 // resource loader that downloads the entire resource into memory.
1213 1213
1214 // Socket reuse policy. The value should be of type enum 1214 // Socket reuse policy. The value should be of type enum
1215 // ClientSocketReusePolicy. 1215 // ClientSocketReusePolicy.
1216 const char kSocketReusePolicy[] = "socket-reuse-policy"; 1216 const char kSocketReusePolicy[] = "socket-reuse-policy";
1217 1217
1218 // Origin for which SpdyProxy authentication is supported.
1219 const char kSpdyProxyOrigin[] = "spdy-proxy-origin";
1220
1218 // Speculative resource prefetching. 1221 // Speculative resource prefetching.
1219 const char kSpeculativeResourcePrefetching[] = 1222 const char kSpeculativeResourcePrefetching[] =
1220 "speculative-resource-prefetching"; 1223 "speculative-resource-prefetching";
1221 1224
1222 // Speculative resource prefetching is disabled. 1225 // Speculative resource prefetching is disabled.
1223 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; 1226 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled";
1224 1227
1225 // Speculative resource prefetching will only learn about resources that need to 1228 // Speculative resource prefetching will only learn about resources that need to
1226 // be prefetched but will not prefetch them. 1229 // be prefetched but will not prefetch them.
1227 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; 1230 const char kSpeculativeResourcePrefetchingLearning[] = "learning";
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 1577
1575 // ----------------------------------------------------------------------------- 1578 // -----------------------------------------------------------------------------
1576 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1579 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1577 // 1580 //
1578 // You were going to just dump your switches here, weren't you? Instead, please 1581 // You were going to just dump your switches here, weren't you? Instead, please
1579 // put them in alphabetical order above, or in order inside the appropriate 1582 // put them in alphabetical order above, or in order inside the appropriate
1580 // ifdef at the bottom. The order should match the header. 1583 // ifdef at the bottom. The order should match the header.
1581 // ----------------------------------------------------------------------------- 1584 // -----------------------------------------------------------------------------
1582 1585
1583 } // namespace switches 1586 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698