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

Unified Diff: chrome/browser/io_thread.cc

Issue 341653002: Remove vestigal SDCH stuff in IOThread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove class forward decl. Created 6 years, 6 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
« no previous file with comments | « chrome/browser/io_thread.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 3a9860cc4ade8019e299dfadb7ae471adf3a96e9..2374d916c9fca2e30b19167a8a89890e60d0c92e 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -48,7 +48,6 @@
#include "content/public/browser/cookie_store_factory.h"
#include "net/base/host_mapping_rules.h"
#include "net/base/net_util.h"
-#include "net/base/sdch_manager.h"
#include "net/cert/cert_verifier.h"
#include "net/cert/cert_verify_proc.h"
#include "net/cert/ct_known_logs.h"
@@ -421,7 +420,6 @@ IOThread::IOThread(
: net_log_(net_log),
extension_event_router_forwarder_(extension_event_router_forwarder),
globals_(NULL),
- sdch_manager_(NULL),
is_spdy_disabled_by_policy_(false),
weak_factory_(this),
creation_time_(base::TimeTicks::Now()) {
@@ -699,8 +697,6 @@ void IOThread::InitAsync() {
globals_->proxy_script_fetcher_context.reset(
ConstructProxyScriptFetcherContext(globals_, net_log_));
- sdch_manager_ = new net::SdchManager();
-
#if defined(OS_MACOSX) && !defined(OS_IOS)
// Start observing Keychain events. This needs to be done on the UI thread,
// as Keychain services requires a CFRunLoop.
@@ -728,9 +724,6 @@ void IOThread::InitAsync() {
void IOThread::CleanUp() {
base::debug::LeakTracker<SafeBrowsingURLRequestContext>::CheckForLeaks();
- delete sdch_manager_;
- sdch_manager_ = NULL;
-
#if defined(USE_NSS) || defined(OS_IOS)
net::ShutdownNSSHttpIO();
#endif
@@ -1058,10 +1051,6 @@ void IOThread::InitSystemRequestContextOnIOThread() {
new net::URLRequestJobFactoryImpl());
globals_->system_request_context.reset(
ConstructSystemRequestContext(globals_, net_log_));
-
- sdch_manager_->set_sdch_fetcher(
- new SdchDictionaryFetcher(
mef 2014/06/18 17:30:30 So, where is fetcher now?
Randy Smith (Not in Mondays) 2014/06/18 17:39:25 http://src.chromium.org/viewvc/chrome/trunk/src/ch
- sdch_manager_, system_url_request_context_getter_.get()));
}
void IOThread::UpdateDnsClientEnabled() {
« no previous file with comments | « chrome/browser/io_thread.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698