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