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

Unified Diff: Source/web/WorkerPermissionClient.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/WorkerPermissionClient.h
diff --git a/Source/web/WorkerPermissionClient.h b/Source/web/WorkerPermissionClient.h
index d9478a26480b9fe587c265551777fda78d69ddd5..afbbec9242810699af88365590852e43782de987 100644
--- a/Source/web/WorkerPermissionClient.h
+++ b/Source/web/WorkerPermissionClient.h
@@ -54,7 +54,8 @@ public:
bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize);
bool allowFileSystem();
- void requestFileSystemAccess(const WebPermissionCallbacks&);
+ bool requestFileSystemAccessSync();
+ void requestFileSystemAccessAsync(const WebPermissionCallbacks&);
kinuko 2014/05/16 10:18:26 Hmm, do we need this?
Xi Han 2014/05/16 13:05:51 In this CL, I only do renaming, since this functio
kinuko 2014/05/19 08:38:04 It's fine since now it's landed, but I don't think
bool allowIndexedDB(const WebString& name);
static const char* supplementName();

Powered by Google App Engine
This is Rietveld 408576698