diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-12 18:40:10 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-12 18:40:10 +0000 |
commit | f870252fda3d5724feeda33aeb6deaf502643a31 (patch) | |
tree | ac8b4391c15be1d0bb3af6def8cba95d0587caae /chrome_frame | |
parent | 2c9be01dc74d1b0edff9c9288abcb66516083af0 (diff) | |
download | chromium_src-f870252fda3d5724feeda33aeb6deaf502643a31.zip chromium_src-f870252fda3d5724feeda33aeb6deaf502643a31.tar.gz chromium_src-f870252fda3d5724feeda33aeb6deaf502643a31.tar.bz2 |
Http Cache: Add a backend factory class so that the caller
has more control about the backend instantiation.
BUG=none
TEST=current unit tests.
Review URL: http://codereview.chromium.org/2000011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47050 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/test/test_server_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/test/test_server_test.cc b/chrome_frame/test/test_server_test.cc index 0523336..9376e0d 100644 --- a/chrome_frame/test/test_server_test.cc +++ b/chrome_frame/test/test_server_test.cc @@ -71,7 +71,7 @@ class URLRequestTestContext : public URLRequestContext { 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); } |