Chromium Code Reviews| Index: Source/modules/filesystem/DOMWindowFileSystem.h |
| diff --git a/Source/modules/filesystem/DOMWindowFileSystem.h b/Source/modules/filesystem/DOMWindowFileSystem.h |
| index 891f9ffaaffa6df2b57aa5070631e12bb34b8ba8..5e78d6ec7b0d7aa27a6ff133fcde4afd170f561a 100644 |
| --- a/Source/modules/filesystem/DOMWindowFileSystem.h |
| +++ b/Source/modules/filesystem/DOMWindowFileSystem.h |
| @@ -26,6 +26,7 @@ |
| #ifndef DOMWindowFileSystem_h |
| #define DOMWindowFileSystem_h |
| +#include "bindings/v8/ScriptWrappable.h" |
| #include "wtf/PassRefPtr.h" |
| #include "wtf/text/WTFString.h" |
| @@ -36,9 +37,8 @@ class EntryCallback; |
| class ErrorCallback; |
| class FileSystemCallback; |
| -class DOMWindowFileSystem { |
| +class DOMWindowFileSystem : public ScriptWrappable { |
|
abarth-chromium
2013/05/14 00:38:13
This doesn't make sense. This object is never wra
Tom Sepez
2013/05/14 18:21:51
Ah. I'd wondered about these where there are only
|
| public: |
| - |
| static void webkitRequestFileSystem(DOMWindow*, int type, long long size, PassRefPtr<FileSystemCallback>, PassRefPtr<ErrorCallback>); |
| static void webkitResolveLocalFileSystemURL(DOMWindow*, const String&, PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>); |