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

Unified Diff: public/web/WebPermissionClient.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/WebPermissionClient.h
diff --git a/public/web/WebPermissionClient.h b/public/web/WebPermissionClient.h
index 5612a9de82734e3bdbe3ae16078866f8d0bf78f6..9dc3ffbd89f6601a6e3ebc19c4e5572eac0b6e34 100644
--- a/public/web/WebPermissionClient.h
+++ b/public/web/WebPermissionClient.h
@@ -45,9 +45,6 @@ public:
virtual bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize) { return true; }
// Controls whether access to File System is allowed for this frame.
- virtual bool allowFileSystem() { return true; }
-
- // Controls whether access to File System is allowed for this frame.
virtual bool requestFileSystemAccessSync() { return true; }
virtual void requestFileSystemAccessAsync(const WebPermissionCallbacks& callbacks) { }

Powered by Google App Engine
This is Rietveld 408576698