diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 06:50:46 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 06:50:46 +0000 |
commit | 180ef24f1fd1b1ff309fc35f250336890f702f28 (patch) | |
tree | de5918896ed9780e5cf6098be329060a58f3702e /content/worker/websharedworkerclient_proxy.h | |
parent | 8d7dd7ade794c71be49c7a954c4d4b4ca1ab6c01 (diff) | |
download | chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.zip chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.tar.gz chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.tar.bz2 |
Rename WebKit namespace to blink (part 3)
This CL updates all references to the WebKit namespace in content.
TBR=darin@chromium.org
BUG=295096
Review URL: https://codereview.chromium.org/63253002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker/websharedworkerclient_proxy.h')
-rw-r--r-- | content/worker/websharedworkerclient_proxy.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/content/worker/websharedworkerclient_proxy.h b/content/worker/websharedworkerclient_proxy.h index bb51323..636e73f 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(); |