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

Unified Diff: third_party/WebKit/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 years, 1 month 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: third_party/WebKit/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h
diff --git a/third_party/WebKit/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h b/third_party/WebKit/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h
index e4f1d95ecb502f77f29792ea1f1cca1f3bf560e4..b4e779dc22a18338ae5dc9dee87f1d46f26af57d 100644
--- a/third_party/WebKit/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h
+++ b/third_party/WebKit/Source/modules/filesystem/WorkerGlobalScopeFileSystem.h
@@ -27,16 +27,16 @@
#ifndef WorkerGlobalScopeFileSystem_h
#define WorkerGlobalScopeFileSystem_h
-#include "modules/filesystem/DOMFileSystemSync.h"
+#include "modules/filesystem/FileSystemSync.h"
#include "platform/heap/Handle.h"
namespace blink {
-class EntryCallback;
-class EntrySync;
class ErrorCallback;
class ExceptionState;
class FileSystemCallback;
+class FileSystemEntryCallback;
+class FileSystemEntrySync;
class WorkerGlobalScope;
class WorkerGlobalScopeFileSystem {
@@ -53,17 +53,19 @@ class WorkerGlobalScopeFileSystem {
long long size,
FileSystemCallback* successCallback,
ErrorCallback*);
- static DOMFileSystemSync* webkitRequestFileSystemSync(WorkerGlobalScope&,
- int type,
- long long size,
- ExceptionState&);
- static void webkitResolveLocalFileSystemURL(WorkerGlobalScope&,
- const String& url,
- EntryCallback* successCallback,
- ErrorCallback*);
- static EntrySync* webkitResolveLocalFileSystemSyncURL(WorkerGlobalScope&,
- const String& url,
- ExceptionState&);
+ static FileSystemSync* webkitRequestFileSystemSync(WorkerGlobalScope&,
+ int type,
+ long long size,
+ ExceptionState&);
+ static void webkitResolveLocalFileSystemURL(
+ WorkerGlobalScope&,
+ const String& url,
+ FileSystemEntryCallback* successCallback,
+ ErrorCallback*);
+ static FileSystemEntrySync* webkitResolveLocalFileSystemSyncURL(
+ WorkerGlobalScope&,
+ const String& url,
+ ExceptionState&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698