| Index: Source/modules/filesystem/DOMWindowFileSystem.h
|
| diff --git a/Source/modules/filesystem/DOMWindowFileSystem.h b/Source/modules/filesystem/DOMWindowFileSystem.h
|
| index 98a42e865e7065c20a06beace3981a047798328d..cd8c85d736a6888ad05b05139328886690878d58 100644
|
| --- a/Source/modules/filesystem/DOMWindowFileSystem.h
|
| +++ b/Source/modules/filesystem/DOMWindowFileSystem.h
|
| @@ -27,6 +27,7 @@
|
| #define DOMWindowFileSystem_h
|
|
|
| #include "platform/heap/Handle.h"
|
| +#include "wtf/Allocator.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
| @@ -37,6 +38,7 @@ class ErrorCallback;
|
| class FileSystemCallback;
|
|
|
| class DOMWindowFileSystem {
|
| + STATIC_ONLY(DOMWindowFileSystem);
|
| public:
|
| static void webkitRequestFileSystem(DOMWindow&, int type, long long size, FileSystemCallback*, ErrorCallback*);
|
| static void webkitResolveLocalFileSystemURL(DOMWindow&, const String&, EntryCallback*, ErrorCallback*);
|
| @@ -47,10 +49,6 @@ public:
|
| TEMPORARY,
|
| PERSISTENT,
|
| };
|
| -
|
| -private:
|
| - DOMWindowFileSystem();
|
| - ~DOMWindowFileSystem();
|
| };
|
|
|
| } // namespace blink
|
|
|