Chromium Code Reviews| Index: Source/modules/filesystem/Entry.h |
| diff --git a/Source/modules/filesystem/Entry.h b/Source/modules/filesystem/Entry.h |
| index 27a86faf8e933f583fcb65025d0e32d38429016d..53e5c19d06e78ad59460863e518b63199ec9ab67 100644 |
| --- a/Source/modules/filesystem/Entry.h |
| +++ b/Source/modules/filesystem/Entry.h |
| @@ -31,6 +31,7 @@ |
| #ifndef Entry_h |
| #define Entry_h |
| +#include "bindings/v8/ScriptWrappable.h" |
| #include "modules/filesystem/DOMFileSystem.h" |
| #include "modules/filesystem/EntryBase.h" |
| #include "wtf/PassRefPtr.h" |
| @@ -45,7 +46,7 @@ class ErrorCallback; |
| class MetadataCallback; |
| class VoidCallback; |
| -class Entry : public EntryBase { |
| +class Entry : public ScriptWrappable, public EntryBase { |
|
abarth-chromium
2013/05/14 00:38:13
Same here. What the deal with these "base" object
Tom Sepez
2013/05/14 18:21:51
Implementation details. Not an interface, therefo
|
| public: |
| DOMFileSystem* filesystem() const { return static_cast<DOMFileSystem*>(m_fileSystem.get()); } |