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

Unified Diff: public/web/WebWorkerPermissionClientProxy.h

Issue 277353002: Use asynchronized api for file system request. [blink] (3/4) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changes are made. Created 6 years, 7 months 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
« public/web/WebPermissionClient.h ('K') | « public/web/WebPermissionClient.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebWorkerPermissionClientProxy.h
diff --git a/public/web/WebWorkerPermissionClientProxy.h b/public/web/WebWorkerPermissionClientProxy.h
index 6a5dd00da7591ebe7d8ea30963cd0234d1c4c1fa..eb420128a7ba06ae5fed1fe00276801397c8967e 100644
--- a/public/web/WebWorkerPermissionClientProxy.h
+++ b/public/web/WebWorkerPermissionClientProxy.h
@@ -51,19 +51,11 @@ public:
return true;
}
- // FIXME: This is going away once requestFileSystemAccess has been wired
- // out into the Blink embedder.
- virtual bool allowFileSystem()
+ virtual bool requestFileSystemAccessSync()
{
return true;
}
- virtual void requestFileSystemAccess(const WebPermissionCallbacks& callbacks)
- {
- WebPermissionCallbacks permissionCallbacks(callbacks);
- permissionCallbacks.doAllow();
- }
-
virtual bool allowIndexedDB(const WebString& name)
{
return true;
« public/web/WebPermissionClient.h ('K') | « public/web/WebPermissionClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698