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

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

Issue 30883003: Simple fallback implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patched
Patch Set: Created 7 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') | no next file » | 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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 1335
1336 // Simulates a critical update being available. 1336 // Simulates a critical update being available.
1337 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; 1337 const char kSimulateCriticalUpdate[] = "simulate-critical-update";
1338 1338
1339 // Simulates that current version is outdated. 1339 // Simulates that current version is outdated.
1340 const char kSimulateOutdated[] = "simulate-outdated"; 1340 const char kSimulateOutdated[] = "simulate-outdated";
1341 1341
1342 // Replaces the buffered data source for <audio> and <video> with a simplified 1342 // Replaces the buffered data source for <audio> and <video> with a simplified
1343 // resource loader that downloads the entire resource into memory. 1343 // resource loader that downloads the entire resource into memory.
1344 1344
1345 // Second origin that can be used for the proxy.
bengr 2013/10/20 21:51:48 for what proxy?
1346 const char kSpdyProxyAuthFallback[] = "spdy-proxy-auth-fallback";
1347
1345 // Origin for which SpdyProxy authentication is supported. 1348 // Origin for which SpdyProxy authentication is supported.
1346 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin"; 1349 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin";
1347 1350
1348 // Authentication string for the data reduction proxy. 1351 // Authentication string for the data reduction proxy.
1349 const char kSpdyProxyAuthValue[] = "spdy-proxy-auth-value"; 1352 const char kSpdyProxyAuthValue[] = "spdy-proxy-auth-value";
1350 1353
1351 // Speculative resource prefetching. 1354 // Speculative resource prefetching.
1352 const char kSpeculativeResourcePrefetching[] = 1355 const char kSpeculativeResourcePrefetching[] =
1353 "speculative-resource-prefetching"; 1356 "speculative-resource-prefetching";
1354 1357
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
1664 1667
1665 // ----------------------------------------------------------------------------- 1668 // -----------------------------------------------------------------------------
1666 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1669 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1667 // 1670 //
1668 // You were going to just dump your switches here, weren't you? Instead, please 1671 // You were going to just dump your switches here, weren't you? Instead, please
1669 // put them in alphabetical order above, or in order inside the appropriate 1672 // put them in alphabetical order above, or in order inside the appropriate
1670 // ifdef at the bottom. The order should match the header. 1673 // ifdef at the bottom. The order should match the header.
1671 // ----------------------------------------------------------------------------- 1674 // -----------------------------------------------------------------------------
1672 1675
1673 } // namespace switches 1676 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698