summaryrefslogtreecommitdiffstats
path: root/chrome/service
diff options
context:
space:
mode:
authorsanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-12 19:46:44 +0000
committersanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-12 19:46:44 +0000
commit2194e23551ec37792499dac493161f641d3441f1 (patch)
tree651b7608b154f0eca1712642bfe772699720b494 /chrome/service
parentfc790462b4f248712bbc8c3734664dd6b05f80f2 (diff)
downloadchromium_src-2194e23551ec37792499dac493161f641d3441f1.zip
chromium_src-2194e23551ec37792499dac493161f641d3441f1.tar.gz
chromium_src-2194e23551ec37792499dac493161f641d3441f1.tar.bz2
Fixed build break caused by using the new BackendFactory method of constructing an in-memory cache.
BUG=None TEST=Buildbots should pass. Review URL: http://codereview.chromium.org/2011015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r--chrome/service/net/service_url_request_context.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/service/net/service_url_request_context.cc b/chrome/service/net/service_url_request_context.cc
index ab5e61a..9a1716e 100644
--- a/chrome/service/net/service_url_request_context.cc
+++ b/chrome/service/net/service_url_request_context.cc
@@ -40,7 +40,7 @@ ServiceURLRequestContext::ServiceURLRequestContext() {
proxy_service_,
ssl_config_service_,
http_auth_handler_factory_),
- disk_cache::CreateInMemoryCacheBackend(0));
+ net::HttpCache::DefaultBackend::InMemory(0));
// In-memory cookie store.
cookie_store_ = new net::CookieMonster(NULL, NULL);
accept_language_ = "en-us,fr";