Commit 01a3a616 authored by derekjchow's avatar derekjchow Committed by Commit bot

[Chromecast] Remove in-memory HttpCache.

BUG=internal b/19212285
R=lcwu@chromium.org

Review URL: https://codereview.chromium.org/961993006

Cr-Commit-Position: refs/heads/master@{#318929}
parent b62daf58
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
#include "net/cookies/cookie_store.h" #include "net/cookies/cookie_store.h"
#include "net/dns/host_resolver.h" #include "net/dns/host_resolver.h"
#include "net/http/http_auth_handler_factory.h" #include "net/http/http_auth_handler_factory.h"
#include "net/http/http_cache.h"
#include "net/http/http_network_layer.h" #include "net/http/http_network_layer.h"
#include "net/http/http_server_properties_impl.h" #include "net/http/http_server_properties_impl.h"
#include "net/http/http_stream_factory.h" #include "net/http/http_stream_factory.h"
...@@ -355,9 +354,6 @@ net::URLRequestContext* URLRequestContextFactory::CreateMainRequestContext( ...@@ -355,9 +354,6 @@ net::URLRequestContext* URLRequestContextFactory::CreateMainRequestContext(
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO)); DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
InitializeSystemContextDependencies(); InitializeSystemContextDependencies();
net::HttpCache::BackendFactory* main_backend =
net::HttpCache::DefaultBackend::InMemory(16 * 1024 * 1024);
bool ignore_certificate_errors = false; bool ignore_certificate_errors = false;
base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();
if (cmd_line->HasSwitch(switches::kIgnoreCertificateErrors)) { if (cmd_line->HasSwitch(switches::kIgnoreCertificateErrors)) {
...@@ -367,7 +363,8 @@ net::URLRequestContext* URLRequestContextFactory::CreateMainRequestContext( ...@@ -367,7 +363,8 @@ net::URLRequestContext* URLRequestContextFactory::CreateMainRequestContext(
PopulateNetworkSessionParams(ignore_certificate_errors, PopulateNetworkSessionParams(ignore_certificate_errors,
&network_session_params); &network_session_params);
InitializeMainContextDependencies( InitializeMainContextDependencies(
new net::HttpCache(network_session_params, main_backend), new net::HttpNetworkLayer(
new net::HttpNetworkSession(network_session_params)),
protocol_handlers, protocol_handlers,
request_interceptors.Pass()); request_interceptors.Pass());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment