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

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: Update CL according to changes in CL 289793002. 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
Index: public/web/WebWorkerPermissionClientProxy.h
diff --git a/public/web/WebWorkerPermissionClientProxy.h b/public/web/WebWorkerPermissionClientProxy.h
index 1e477a71c9d486ab93f55f0d53173c3bdda82b7e..eb420128a7ba06ae5fed1fe00276801397c8967e 100644
--- a/public/web/WebWorkerPermissionClientProxy.h
+++ b/public/web/WebWorkerPermissionClientProxy.h
@@ -51,24 +51,11 @@ public:
return true;
}
- // FIXME: This is going away once requestFileSystemAccess has been wired
- // out into the Blink embedder.
- virtual bool allowFileSystem()
- {
- return true;
- }
-
virtual bool requestFileSystemAccessSync()
{
return true;
}
- virtual void requestFileSystemAccessAsync(const WebPermissionCallbacks& callbacks)
kinuko 2014/05/16 10:47:05 Why do we add this in the other CL and then remove
Xi Han 2014/05/16 19:48:44 In the other CL, this function is renamed from req
- {
- WebPermissionCallbacks permissionCallbacks(callbacks);
- permissionCallbacks.doAllow();
- }
-
virtual bool allowIndexedDB(const WebString& name)
{
return true;
« Source/modules/filesystem/LocalFileSystem.cpp ('K') | « public/web/WebPermissionClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698