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

Unified Diff: chrome/browser/io_thread.cc

Issue 275953002: Remove HTTP pipelining support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/io_thread.cc
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index adabf01dec251aab966cffdf29e3a268cb11c825..0f2be6b6b77f2f5161a639564ab4a0bf943aae41 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -34,7 +34,6 @@
#include "chrome/browser/net/chrome_url_request_context.h"
#include "chrome/browser/net/connect_interceptor.h"
#include "chrome/browser/net/dns_probe_service.h"
-#include "chrome/browser/net/http_pipelining_compatibility_client.h"
#include "chrome/browser/net/pref_proxy_config_tracker.h"
#include "chrome/browser/net/proxy_service_factory.h"
#include "chrome/browser/net/sdch_dictionary_fetcher.h"
@@ -395,7 +394,6 @@ SystemRequestContextLeakChecker::~SystemRequestContextLeakChecker() {
IOThread::Globals::Globals()
: system_request_context_leak_checker(this),
ignore_certificate_errors(false),
- http_pipelining_enabled(false),
testing_fixed_http_port(0),
testing_fixed_https_port(0),
enable_user_alternate_protocol_ports(false) {
@@ -930,7 +928,6 @@ void IOThread::InitializeNetworkSessionParams(
params->network_delegate = globals_->system_network_delegate.get();
params->host_mapping_rules = globals_->host_mapping_rules.get();
params->ignore_certificate_errors = globals_->ignore_certificate_errors;
- params->http_pipelining_enabled = globals_->http_pipelining_enabled;
params->testing_fixed_http_port = globals_->testing_fixed_http_port;
params->testing_fixed_https_port = globals_->testing_fixed_https_port;

Powered by Google App Engine
This is Rietveld 408576698