Index: Source/modules/filesystem/EntryArraySync.h |
diff --git a/Source/modules/filesystem/EntryArraySync.h b/Source/modules/filesystem/EntryArraySync.h |
index 2a0508d77b23a64d8ecf05331972f7d38ce3ffc4..689c55846b97406e46bd8371f4bd2bfec82b3238 100644 |
--- a/Source/modules/filesystem/EntryArraySync.h |
+++ b/Source/modules/filesystem/EntryArraySync.h |
@@ -32,14 +32,13 @@ |
#define EntryArraySync_h |
#include "bindings/v8/ScriptWrappable.h" |
+#include "modules/filesystem/EntriesCallback.h" |
#include "modules/filesystem/EntrySync.h" |
#include "wtf/PassRefPtr.h" |
#include "wtf/RefCounted.h" |
namespace WebCore { |
-class EntryArray; |
- |
class EntryArraySync : public RefCounted<EntryArraySync>, public ScriptWrappable { |
public: |
static PassRefPtr<EntryArraySync> create() |
@@ -47,7 +46,7 @@ public: |
return adoptRef(new EntryArraySync()); |
} |
- static PassRefPtr<EntryArraySync> create(EntryArray*); |
+ static PassRefPtr<EntryArraySync> create(const EntryVector&); |
unsigned length() const { return m_entries.size(); } |
EntrySync* item(unsigned index) const; |