| 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;
|
|
|
|
|