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

Unified Diff: content/worker/websharedworkerclient_proxy.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/websharedworker_stub.cc ('k') | content/worker/websharedworkerclient_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/websharedworkerclient_proxy.h
diff --git a/content/worker/websharedworkerclient_proxy.h b/content/worker/websharedworkerclient_proxy.h
index bb5132337711132d6800dc94447d5453835bb77e..636e73f6da3ceafa215bc1d166fdd7493a9ddf63 100644
--- a/content/worker/websharedworkerclient_proxy.h
+++ b/content/worker/websharedworkerclient_proxy.h
@@ -10,7 +10,7 @@
#include "ipc/ipc_channel.h"
#include "third_party/WebKit/public/web/WebSharedWorkerClient.h"
-namespace WebKit {
+namespace blink {
class WebApplicationCacheHost;
class WebApplicationCacheHostClient;
class WebFrame;
@@ -27,7 +27,7 @@ class WebSharedWorkerStub;
// is also called by the worker code and converts these function calls into
// IPCs that are sent to the renderer, where they're converted back to function
// calls by WebWorkerProxy.
-class WebSharedWorkerClientProxy : public WebKit::WebSharedWorkerClient {
+class WebSharedWorkerClientProxy : public blink::WebSharedWorkerClient {
public:
WebSharedWorkerClientProxy(int route_id, WebSharedWorkerStub* stub);
virtual ~WebSharedWorkerClientProxy();
@@ -36,24 +36,24 @@ class WebSharedWorkerClientProxy : public WebKit::WebSharedWorkerClient {
virtual void workerContextClosed();
virtual void workerContextDestroyed();
- virtual WebKit::WebNotificationPresenter* notificationPresenter();
+ virtual blink::WebNotificationPresenter* notificationPresenter();
- virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
- WebKit::WebApplicationCacheHostClient* client);
- virtual WebKit::WebWorkerPermissionClientProxy*
+ virtual blink::WebApplicationCacheHost* createApplicationCacheHost(
+ blink::WebApplicationCacheHostClient* client);
+ virtual blink::WebWorkerPermissionClientProxy*
createWorkerPermissionClientProxy(
- const WebKit::WebSecurityOrigin& origin);
+ const blink::WebSecurityOrigin& origin);
// TODO(kinuko): Deprecate these methods.
- virtual bool allowDatabase(WebKit::WebFrame* frame,
- const WebKit::WebString& name,
- const WebKit::WebString& display_name,
+ virtual bool allowDatabase(blink::WebFrame* frame,
+ const blink::WebString& name,
+ const blink::WebString& display_name,
unsigned long estimated_size);
virtual bool allowFileSystem();
- virtual bool allowIndexedDB(const WebKit::WebString&);
+ virtual bool allowIndexedDB(const blink::WebString&);
- virtual void dispatchDevToolsMessage(const WebKit::WebString&);
- virtual void saveDevToolsAgentState(const WebKit::WebString&);
+ virtual void dispatchDevToolsMessage(const blink::WebString&);
+ virtual void saveDevToolsAgentState(const blink::WebString&);
void EnsureWorkerContextTerminates();
« no previous file with comments | « content/worker/websharedworker_stub.cc ('k') | content/worker/websharedworkerclient_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698