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

Unified Diff: chrome/renderer/worker_permission_client_proxy.cc

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/worker_permission_client_proxy.h ('k') | chrome/test/base/chrome_render_view_test.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.cc
diff --git a/chrome/renderer/worker_permission_client_proxy.cc b/chrome/renderer/worker_permission_client_proxy.cc
index f7a0a79d6d1a9c99460e1578efad2417e27b2d17..e024935fe940b0ff531af676380c1204912aa918 100644
--- a/chrome/renderer/worker_permission_client_proxy.cc
+++ b/chrome/renderer/worker_permission_client_proxy.cc
@@ -13,7 +13,7 @@
WorkerPermissionClientProxy::WorkerPermissionClientProxy(
content::RenderView* render_view,
- WebKit::WebFrame* frame)
+ blink::WebFrame* frame)
: routing_id_(render_view->GetRoutingID()),
is_unique_origin_(false) {
if (frame->document().securityOrigin().isUnique() ||
@@ -28,8 +28,8 @@ WorkerPermissionClientProxy::WorkerPermissionClientProxy(
WorkerPermissionClientProxy::~WorkerPermissionClientProxy() {}
bool WorkerPermissionClientProxy::allowDatabase(
- const WebKit::WebString& name,
- const WebKit::WebString& display_name,
+ const blink::WebString& name,
+ const blink::WebString& display_name,
unsigned long estimated_size) {
if (is_unique_origin_)
return false;
@@ -52,7 +52,7 @@ bool WorkerPermissionClientProxy::allowFileSystem() {
}
bool WorkerPermissionClientProxy::allowIndexedDB(
- const WebKit::WebString& name) {
+ const blink::WebString& name) {
if (is_unique_origin_)
return false;
« no previous file with comments | « chrome/renderer/worker_permission_client_proxy.h ('k') | chrome/test/base/chrome_render_view_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698