Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11479)

Unified Diff: content/worker/worker_webapplicationcachehost_impl.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/worker/worker_thread.cc ('k') | content/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_webapplicationcachehost_impl.h
diff --git a/content/worker/worker_webapplicationcachehost_impl.h b/content/worker/worker_webapplicationcachehost_impl.h
index 2360cb3c7674583f2366c0eb4ea422e11ea9786c..6f8385cb035c1d37f44801c2d6cf7baf97639dd2 100644
--- a/content/worker/worker_webapplicationcachehost_impl.h
+++ b/content/worker/worker_webapplicationcachehost_impl.h
@@ -30,15 +30,15 @@ class WorkerWebApplicationCacheHostImpl : public WebApplicationCacheHostImpl {
public:
WorkerWebApplicationCacheHostImpl(
const WorkerAppCacheInitInfo& init_info,
- WebKit::WebApplicationCacheHostClient* client);
+ blink::WebApplicationCacheHostClient* client);
// Main resource loading is different for workers. The resource is
// loaded by the creator of the worker rather than the worker itself.
// These overrides are stubbed out.
virtual void willStartMainResourceRequest(
- WebKit::WebURLRequest&, const WebKit::WebFrame*);
+ blink::WebURLRequest&, const blink::WebFrame*);
virtual void didReceiveResponseForMainResource(
- const WebKit::WebURLResponse&);
+ const blink::WebURLResponse&);
virtual void didReceiveDataForMainResource(const char* data, int len);
virtual void didFinishLoadingMainResource(bool success);
@@ -46,7 +46,7 @@ class WorkerWebApplicationCacheHostImpl : public WebApplicationCacheHostImpl {
// time what cache to select and do so then.
// These overrides are stubbed out.
virtual void selectCacheWithoutManifest();
- virtual bool selectCacheWithManifest(const WebKit::WebURL& manifestURL);
+ virtual bool selectCacheWithManifest(const blink::WebURL& manifestURL);
};
} // namespace content
« no previous file with comments | « content/worker/worker_thread.cc ('k') | content/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698