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

Unified Diff: Source/modules/filesystem/FileSystemClient.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/modules/filesystem/FileSystemClient.h
diff --git a/Source/modules/filesystem/FileSystemClient.h b/Source/modules/filesystem/FileSystemClient.h
index 8cdf058dc81b37b2e510788ac03920cfa4e72147..93cb4d01b9e4fc79906379590077d295a863641d 100644
--- a/Source/modules/filesystem/FileSystemClient.h
+++ b/Source/modules/filesystem/FileSystemClient.h
@@ -48,8 +48,8 @@ public:
FileSystemClient() { }
virtual ~FileSystemClient() { }
- virtual bool allowFileSystem(ExecutionContext*) = 0;
- virtual void requestFileSystemAccess(ExecutionContext*, PassOwnPtr<WebCore::PermissionCallbacks>) = 0;
+ virtual bool requestFileSystemAccessSync(ExecutionContext*) = 0;
+ virtual void requestFileSystemAccessAsync(ExecutionContext*, PassOwnPtr<WebCore::PermissionCallbacks>) = 0;
};
void provideLocalFileSystemTo(Page&, PassOwnPtr<FileSystemClient>);
« no previous file with comments | « no previous file | Source/modules/filesystem/LocalFileSystem.h » ('j') | Source/modules/filesystem/LocalFileSystem.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698