Index: content/worker/worker_webapplicationcachehost_impl.cc |
diff --git a/content/worker/worker_webapplicationcachehost_impl.cc b/content/worker/worker_webapplicationcachehost_impl.cc |
index 9283906f01d2a1b42cb0476406b714ec0e2d3a85..23201c87beebbf5310e2f4336030744a50d91d4e 100644 |
--- a/content/worker/worker_webapplicationcachehost_impl.cc |
+++ b/content/worker/worker_webapplicationcachehost_impl.cc |
@@ -11,7 +11,7 @@ namespace content { |
WorkerWebApplicationCacheHostImpl::WorkerWebApplicationCacheHostImpl( |
const WorkerAppCacheInitInfo& init_info, |
- WebKit::WebApplicationCacheHostClient* client) |
+ blink::WebApplicationCacheHostClient* client) |
: WebApplicationCacheHostImpl(client, |
WorkerThread::current()->appcache_dispatcher()->backend_proxy()) { |
backend()->SelectCacheForSharedWorker(host_id(), |
@@ -19,11 +19,11 @@ WorkerWebApplicationCacheHostImpl::WorkerWebApplicationCacheHostImpl( |
} |
void WorkerWebApplicationCacheHostImpl::willStartMainResourceRequest( |
- WebKit::WebURLRequest&, const WebKit::WebFrame*) { |
+ blink::WebURLRequest&, const blink::WebFrame*) { |
} |
void WorkerWebApplicationCacheHostImpl::didReceiveResponseForMainResource( |
- const WebKit::WebURLResponse&) { |
+ const blink::WebURLResponse&) { |
} |
void WorkerWebApplicationCacheHostImpl::didReceiveDataForMainResource( |
@@ -38,7 +38,7 @@ void WorkerWebApplicationCacheHostImpl::selectCacheWithoutManifest() { |
} |
bool WorkerWebApplicationCacheHostImpl::selectCacheWithManifest( |
- const WebKit::WebURL&) { |
+ const blink::WebURL&) { |
return true; |
} |