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

Unified Diff: Source/modules/filesystem/FileSystemClient.h

Issue 289793002: Rename sync and async file system access methods in blink. [blink] (1/4) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Initial patch 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
« no previous file with comments | « no previous file | Source/web/LocalFileSystemClient.h » ('j') | Source/web/LocalFileSystemClient.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileSystemClient.h
diff --git a/Source/modules/filesystem/FileSystemClient.h b/Source/modules/filesystem/FileSystemClient.h
index 8cdf058dc81b37b2e510788ac03920cfa4e72147..ef5ac59ecf810094cdcb758b9baf0a16741f9337 100644
--- a/Source/modules/filesystem/FileSystemClient.h
+++ b/Source/modules/filesystem/FileSystemClient.h
@@ -49,7 +49,8 @@ public:
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/web/LocalFileSystemClient.h » ('j') | Source/web/LocalFileSystemClient.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698