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

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

Issue 7289006: Basic HTTP pipelining support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/base/net_error_list.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 // Enables experimental timeline API. 443 // Enables experimental timeline API.
444 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 444 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
445 445
446 // Enables the fastback page cache. 446 // Enables the fastback page cache.
447 const char kEnableFastback[] = "enable-fastback"; 447 const char kEnableFastback[] = "enable-fastback";
448 448
449 // By default, cookies are not allowed on file://. They are needed for testing, 449 // By default, cookies are not allowed on file://. They are needed for testing,
450 // for example page cycler and layout tests. See bug 1157243. 450 // for example page cycler and layout tests. See bug 1157243.
451 const char kEnableFileCookies[] = "enable-file-cookies"; 451 const char kEnableFileCookies[] = "enable-file-cookies";
452 452
453 // Enable HTTP pipelining. Attempt to pipeline HTTP connections. Heuristics will
454 // try to figure out if pipelining can be used for a given host and request.
455 // Without this flag, pipelining will never be used.
456 const char kEnableHttpPipelining[] = "enable-http-pipelining";
457
453 // Enables improved SafeBrowsing download protection. 458 // Enables improved SafeBrowsing download protection.
454 const char kEnableImprovedDownloadProtection[] = 459 const char kEnableImprovedDownloadProtection[] =
455 "enable-improved-download-protection"; 460 "enable-improved-download-protection";
456 461
457 // Enables the in-browser thumbnailing, which is more efficient than the 462 // Enables the in-browser thumbnailing, which is more efficient than the
458 // in-renderer thumbnailing, as we can use more information to determine if we 463 // in-renderer thumbnailing, as we can use more information to determine if we
459 // need to update thumbnails. 464 // need to update thumbnails.
460 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing"; 465 const char kEnableInBrowserThumbnailing[] = "enable-in-browser-thumbnailing";
461 466
462 // Enables IPv6 support, even if probes suggest that it may not be fully 467 // Enables IPv6 support, even if probes suggest that it may not be fully
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
1262 1267
1263 // ----------------------------------------------------------------------------- 1268 // -----------------------------------------------------------------------------
1264 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1269 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1265 // 1270 //
1266 // You were going to just dump your switches here, weren't you? Instead, please 1271 // You were going to just dump your switches here, weren't you? Instead, please
1267 // put them in alphabetical order above, or in order inside the appropriate 1272 // put them in alphabetical order above, or in order inside the appropriate
1268 // ifdef at the bottom. The order should match the header. 1273 // ifdef at the bottom. The order should match the header.
1269 // ----------------------------------------------------------------------------- 1274 // -----------------------------------------------------------------------------
1270 1275
1271 } // namespace switches 1276 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/base/net_error_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698