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

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

Issue 105833010: Added Dev host for data reduction proxy controlled by Finch experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments from bengr Created 7 years 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 1340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1351 1351
1352 // Second origin that can be used for the spdy proxy. 1352 // Second origin that can be used for the spdy proxy.
1353 const char kSpdyProxyAuthFallback[] = "spdy-proxy-auth-fallback"; 1353 const char kSpdyProxyAuthFallback[] = "spdy-proxy-auth-fallback";
1354 1354
1355 // Origin for which SpdyProxy authentication is supported. 1355 // Origin for which SpdyProxy authentication is supported.
1356 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin"; 1356 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin";
1357 1357
1358 // Authentication string for the data reduction proxy. 1358 // Authentication string for the data reduction proxy.
1359 const char kSpdyProxyAuthValue[] = "spdy-proxy-auth-value"; 1359 const char kSpdyProxyAuthValue[] = "spdy-proxy-auth-value";
1360 1360
1361 // Origin for which dev version of SpdyProxy authentication is supported.
1362 const char kSpdyProxyDevAuthOrigin[] = "spdy-proxy-dev-auth-origin";
1363
1361 // Speculative resource prefetching. 1364 // Speculative resource prefetching.
1362 const char kSpeculativeResourcePrefetching[] = 1365 const char kSpeculativeResourcePrefetching[] =
1363 "speculative-resource-prefetching"; 1366 "speculative-resource-prefetching";
1364 1367
1365 // Speculative resource prefetching is disabled. 1368 // Speculative resource prefetching is disabled.
1366 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; 1369 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled";
1367 1370
1368 // Speculative resource prefetching will only learn about resources that need to 1371 // Speculative resource prefetching will only learn about resources that need to
1369 // be prefetched but will not prefetch them. 1372 // be prefetched but will not prefetch them.
1370 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; 1373 const char kSpeculativeResourcePrefetchingLearning[] = "learning";
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
1679 1682
1680 // ----------------------------------------------------------------------------- 1683 // -----------------------------------------------------------------------------
1681 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1684 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1682 // 1685 //
1683 // You were going to just dump your switches here, weren't you? Instead, please 1686 // You were going to just dump your switches here, weren't you? Instead, please
1684 // put them in alphabetical order above, or in order inside the appropriate 1687 // put them in alphabetical order above, or in order inside the appropriate
1685 // ifdef at the bottom. The order should match the header. 1688 // ifdef at the bottom. The order should match the header.
1686 // ----------------------------------------------------------------------------- 1689 // -----------------------------------------------------------------------------
1687 1690
1688 } // namespace switches 1691 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698