| 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
|
|
|