Index: webkit/appcache/appcache_interceptor.h |
diff --git a/webkit/appcache/appcache_interceptor.h b/webkit/appcache/appcache_interceptor.h |
index 519d89b677e75908c59390cee7c3d9707222f697..5a7acfd335fba91d7e9cb7707a587ecf39b39429 100644 |
--- a/webkit/appcache/appcache_interceptor.h |
+++ b/webkit/appcache/appcache_interceptor.h |
@@ -17,7 +17,7 @@ class AppCacheService; |
// An interceptor to hijack requests and potentially service them out of |
// the appcache. |
-class AppCacheInterceptor : public URLRequest::Interceptor { |
+class AppCacheInterceptor : public net::URLRequest::Interceptor { |
public: |
// Registers a singleton instance with the net library. |
// Should be called early in the IO thread prior to initiating requests. |
@@ -26,7 +26,7 @@ class AppCacheInterceptor : public URLRequest::Interceptor { |
} |
// Must be called to make a request eligible for retrieval from an appcache. |
- static void SetExtraRequestInfo(URLRequest* request, |
+ static void SetExtraRequestInfo(net::URLRequest* request, |
AppCacheService* service, |
int process_id, |
int host_id, |
@@ -34,12 +34,12 @@ class AppCacheInterceptor : public URLRequest::Interceptor { |
// May be called after response headers are complete to retrieve extra |
// info about the response. |
- static void GetExtraResponseInfo(URLRequest* request, |
+ static void GetExtraResponseInfo(net::URLRequest* request, |
int64* cache_id, |
GURL* manifest_url); |
protected: |
- // URLRequest::Interceptor overrides |
+ // Overridde from net::URLRequest::Interceptor: |
virtual net::URLRequestJob* MaybeIntercept(net::URLRequest* request); |
virtual net::URLRequestJob* MaybeInterceptResponse(net::URLRequest* request); |
virtual net::URLRequestJob* MaybeInterceptRedirect(net::URLRequest* request, |