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, 4 insertions, 4 deletions
diff --git a/webkit/appcache/appcache_interceptor.h b/webkit/appcache/appcache_interceptor.h
index 519d89b..5a7acfd 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,