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

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: Updated javadocs. 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 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 1339
1340 // Simulates a critical update being available. 1340 // Simulates a critical update being available.
1341 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; 1341 const char kSimulateCriticalUpdate[] = "simulate-critical-update";
1342 1342
1343 // Simulates that current version is outdated. 1343 // Simulates that current version is outdated.
1344 const char kSimulateOutdated[] = "simulate-outdated"; 1344 const char kSimulateOutdated[] = "simulate-outdated";
1345 1345
1346 // Replaces the buffered data source for <audio> and <video> with a simplified 1346 // Replaces the buffered data source for <audio> and <video> with a simplified
1347 // resource loader that downloads the entire resource into memory. 1347 // resource loader that downloads the entire resource into memory.
1348 1348
1349 // Second origin that can be used for the spdy proxy.
1350 const char kSpdyProxyAuthFallback[] = "spdy-proxy-auth-fallback";
1351
1349 // Origin for which SpdyProxy authentication is supported. 1352 // Origin for which SpdyProxy authentication is supported.
1350 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin"; 1353 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin";
1351 1354
1352 // Authentication string for the data reduction proxy. 1355 // Authentication string for the data reduction proxy.
1353 const char kSpdyProxyAuthValue[] = "spdy-proxy-auth-value"; 1356 const char kSpdyProxyAuthValue[] = "spdy-proxy-auth-value";
1354 1357
1355 // Speculative resource prefetching. 1358 // Speculative resource prefetching.
1356 const char kSpeculativeResourcePrefetching[] = 1359 const char kSpeculativeResourcePrefetching[] =
1357 "speculative-resource-prefetching"; 1360 "speculative-resource-prefetching";
1358 1361
(...skipping 305 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