| Index: Source/web/WorkerPermissionClient.cpp
|
| diff --git a/Source/web/WorkerPermissionClient.cpp b/Source/web/WorkerPermissionClient.cpp
|
| index 12584959979dc882c358ef6dab71542c2d8c841e..5ebcb2add2abb59c5d9bdf1b1b117c4990003a55 100644
|
| --- a/Source/web/WorkerPermissionClient.cpp
|
| +++ b/Source/web/WorkerPermissionClient.cpp
|
| @@ -57,13 +57,6 @@ bool WorkerPermissionClient::allowDatabase(const WebString& name, const WebStrin
|
| return m_proxy->allowDatabase(name, displayName, estimatedSize);
|
| }
|
|
|
| -bool WorkerPermissionClient::allowFileSystem()
|
| -{
|
| - if (!m_proxy)
|
| - return true;
|
| - return m_proxy->allowFileSystem();
|
| -}
|
| -
|
| bool WorkerPermissionClient::requestFileSystemAccessSync()
|
| {
|
| if (!m_proxy)
|
| @@ -71,16 +64,6 @@ bool WorkerPermissionClient::requestFileSystemAccessSync()
|
| return m_proxy->requestFileSystemAccessSync();
|
| }
|
|
|
| -void WorkerPermissionClient::requestFileSystemAccessAsync(const WebPermissionCallbacks& callbacks)
|
| -{
|
| - if (!m_proxy) {
|
| - WebPermissionCallbacks permissionCallbacks(callbacks);
|
| - permissionCallbacks.doAllow();
|
| - return;
|
| - }
|
| - m_proxy->requestFileSystemAccessAsync(callbacks);
|
| -}
|
| -
|
| bool WorkerPermissionClient::allowIndexedDB(const WebString& name)
|
| {
|
| if (!m_proxy)
|
|
|