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

Unified Diff: Source/web/LocalFileSystemClient.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: 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..17fbc047ae85f692f0f98015601c517c12b7994a 100644
--- a/Source/web/LocalFileSystemClient.h
+++ b/Source/web/LocalFileSystemClient.h
@@ -43,7 +43,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