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

Unified Diff: chrome/renderer/worker_permission_client_proxy.h

Issue 63273002: Rename WebKit namespace to blink (part 4) (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 | « chrome/renderer/webview_color_overlay.cc ('k') | chrome/renderer/worker_permission_client_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/worker_permission_client_proxy.h
diff --git a/chrome/renderer/worker_permission_client_proxy.h b/chrome/renderer/worker_permission_client_proxy.h
index c28e18a742c2fe8a37f01b9e9a969130035790f3..bb3b805bf606027ab416ee1529920a7a92c7710e 100644
--- a/chrome/renderer/worker_permission_client_proxy.h
+++ b/chrome/renderer/worker_permission_client_proxy.h
@@ -18,25 +18,25 @@ namespace content {
class RenderView;
}
-namespace WebKit {
+namespace blink {
class WebFrame;
}
// This proxy is created on the main renderer thread then passed onto
// the blink's worker thread.
class WorkerPermissionClientProxy
- : public WebKit::WebWorkerPermissionClientProxy {
+ : public blink::WebWorkerPermissionClientProxy {
public:
WorkerPermissionClientProxy(content::RenderView* render_view,
- WebKit::WebFrame* frame);
+ blink::WebFrame* frame);
virtual ~WorkerPermissionClientProxy();
// WebWorkerPermissionClientProxy overrides.
- virtual bool allowDatabase(const WebKit::WebString& name,
- const WebKit::WebString& display_name,
+ virtual bool allowDatabase(const blink::WebString& name,
+ const blink::WebString& display_name,
unsigned long estimated_size);
virtual bool allowFileSystem();
- virtual bool allowIndexedDB(const WebKit::WebString& name);
+ virtual bool allowIndexedDB(const blink::WebString& name);
private:
// Loading document context for this worker.
« no previous file with comments | « chrome/renderer/webview_color_overlay.cc ('k') | chrome/renderer/worker_permission_client_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698