summaryrefslogtreecommitdiffstats
path: root/net/http/http_cache.h
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-27 22:06:31 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-27 22:06:31 +0000
commitcec6f9b08dd24625cd40df548810561b5a55e7d6 (patch)
treeb3eb73f30533f31a794bf887d7da0eaaf3f13850 /net/http/http_cache.h
parent28191891f2389382e4e53d004e04a74bcb1b152e (diff)
downloadchromium_src-cec6f9b08dd24625cd40df548810561b5a55e7d6.zip
chromium_src-cec6f9b08dd24625cd40df548810561b5a55e7d6.tar.gz
chromium_src-cec6f9b08dd24625cd40df548810561b5a55e7d6.tar.bz2
view-cache: Refactor ViewCacheHelper and ViewHttpCacheJobFactory
to use asynchronous interfaces. BUG=26730 TEST=unittest Review URL: http://codereview.chromium.org/2168004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_cache.h')
-rw-r--r--net/http/http_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_cache.h b/net/http/http_cache.h
index 2f1513d..a55763b 100644
--- a/net/http/http_cache.h
+++ b/net/http/http_cache.h
@@ -29,7 +29,6 @@
#include "net/http/http_transaction_factory.h"
class GURL;
-class ViewCacheHelper;
namespace disk_cache {
class Backend;
@@ -47,6 +46,7 @@ class IOBuffer;
class NetworkChangeNotifier;
class ProxyService;
class SSLConfigService;
+class ViewCacheHelper;
class HttpCache : public HttpTransactionFactory,
public base::SupportsWeakPtr<HttpCache> {
@@ -204,7 +204,7 @@ class HttpCache : public HttpTransactionFactory,
// Must remain at the end of the enum.
kNumCacheEntryDataIndices
};
- friend class ::ViewCacheHelper;
+ friend class ViewCacheHelper;
private:
// Types --------------------------------------------------------------------