summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_interceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/appcache/appcache_interceptor.h')
-rw-r--r--webkit/appcache/appcache_interceptor.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/webkit/appcache/appcache_interceptor.h b/webkit/appcache/appcache_interceptor.h
index 5a7acfd..a13dcc6 100644
--- a/webkit/appcache/appcache_interceptor.h
+++ b/webkit/appcache/appcache_interceptor.h
@@ -22,7 +22,7 @@ class AppCacheInterceptor : public net::URLRequest::Interceptor {
// Registers a singleton instance with the net library.
// Should be called early in the IO thread prior to initiating requests.
static void EnsureRegistered() {
- CHECK(instance());
+ CHECK(GetInstance());
}
// Must be called to make a request eligible for retrieval from an appcache.
@@ -38,6 +38,8 @@ class AppCacheInterceptor : public net::URLRequest::Interceptor {
int64* cache_id,
GURL* manifest_url);
+ static AppCacheInterceptor* GetInstance();
+
protected:
// Overridde from net::URLRequest::Interceptor:
virtual net::URLRequestJob* MaybeIntercept(net::URLRequest* request);
@@ -48,10 +50,6 @@ class AppCacheInterceptor : public net::URLRequest::Interceptor {
private:
friend struct DefaultSingletonTraits<AppCacheInterceptor>;
- static AppCacheInterceptor* instance() {
- return Singleton<AppCacheInterceptor>::get();
- }
-
AppCacheInterceptor();
virtual ~AppCacheInterceptor();