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

Unified Diff: Source/web/LocalFileSystemClient.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
Index: Source/web/LocalFileSystemClient.h
diff --git a/Source/web/LocalFileSystemClient.h b/Source/web/LocalFileSystemClient.h
index 0b6075ba4ac65d309250ed57a42df45c57008e8e..bc255f0e6fbe3732cfcaf8512b14c4e89a75bf2b 100644
--- a/Source/web/LocalFileSystemClient.h
+++ b/Source/web/LocalFileSystemClient.h
@@ -42,8 +42,8 @@ public:
virtual ~LocalFileSystemClient();
- virtual bool allowFileSystem(WebCore::ExecutionContext*) OVERRIDE;
- virtual void requestFileSystemAccess(WebCore::ExecutionContext*, PassOwnPtr<WebCore::PermissionCallbacks>) OVERRIDE;
+ virtual bool requestFileSystemAccessSync(WebCore::ExecutionContext*) OVERRIDE;
+ virtual void requestFileSystemAccessAsync(WebCore::ExecutionContext*, PassOwnPtr<WebCore::PermissionCallbacks>) OVERRIDE;
private:
LocalFileSystemClient();

Powered by Google App Engine
This is Rietveld 408576698