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

Unified Diff: Source/modules/filesystem/LocalFileSystem.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/LocalFileSystem.h
diff --git a/Source/modules/filesystem/LocalFileSystem.h b/Source/modules/filesystem/LocalFileSystem.h
index 867db6c7bf5a65512524817f1a574dd5bce183d1..8ac82a5f53bba5dbe56895505eecae2ed9229f55 100644
--- a/Source/modules/filesystem/LocalFileSystem.h
+++ b/Source/modules/filesystem/LocalFileSystem.h
@@ -35,6 +35,7 @@
#include "core/workers/WorkerClients.h"
#include "platform/FileSystemType.h"
#include "wtf/Forward.h"
+#include "wtf/Functional.h"
namespace WebCore {
@@ -63,11 +64,16 @@ public:
WillBeHeapSupplement<Page>::trace(visitor);
WillBeHeapSupplement<WorkerClients>::trace(visitor);
}
-
protected:
explicit LocalFileSystem(PassOwnPtr<FileSystemClient>);
OwnPtr<FileSystemClient> m_client;
kinuko 2014/05/21 07:24:24 I think this one should be in the private: section
Xi Han 2014/05/21 19:50:05 Done.
+private:
+ void fileSystemNotAllowedInternal(PassRefPtr<ExecutionContext>, PassOwnPtr<AsyncFileSystemCallbacks>);
+ void fileSystemAllowedInternal(PassRefPtr<ExecutionContext>, FileSystemType, PassOwnPtr<AsyncFileSystemCallbacks>);
+ void resolveURLInternal(const KURL&, PassOwnPtr<AsyncFileSystemCallbacks>);
+ void deleteFileSystemInternal(PassRefPtr<ExecutionContext>, FileSystemType, PassOwnPtr<AsyncFileSystemCallbacks>);
+ void requestFileSystemAccesssAsyncInternal(PassRefPtr<ExecutionContext>, const Closure&, const Closure&);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698