summaryrefslogtreecommitdiffstats
path: root/content/worker/worker_webapplicationcachehost_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/worker/worker_webapplicationcachehost_impl.cc')
-rw-r--r--content/worker/worker_webapplicationcachehost_impl.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/worker/worker_webapplicationcachehost_impl.cc b/content/worker/worker_webapplicationcachehost_impl.cc
index 9283906..23201c8 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;
}