| Index: Source/modules/filesystem/DirectoryReaderSync.h
|
| diff --git a/Source/modules/filesystem/DirectoryReaderSync.h b/Source/modules/filesystem/DirectoryReaderSync.h
|
| index 814a72d635c7bf648472dd7badc8e5407ecef610..1ecdf82a4d59c93b536d6ee44decc15a3e8f990d 100644
|
| --- a/Source/modules/filesystem/DirectoryReaderSync.h
|
| +++ b/Source/modules/filesystem/DirectoryReaderSync.h
|
| @@ -35,13 +35,16 @@
|
| #include "modules/filesystem/DirectoryReaderBase.h"
|
| #include "wtf/PassRefPtr.h"
|
| #include "wtf/RefCounted.h"
|
| +#include "wtf/Vector.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace WebCore {
|
|
|
| -class EntryArraySync;
|
| +class EntrySync;
|
| class ExceptionState;
|
|
|
| +typedef Vector<RefPtr<EntrySync> > EntrySyncVector;
|
| +
|
| class DirectoryReaderSync : public DirectoryReaderBase, public ScriptWrappable {
|
| public:
|
| static PassRefPtr<DirectoryReaderSync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
|
| @@ -49,7 +52,7 @@ public:
|
| return adoptRef(new DirectoryReaderSync(fileSystem, fullPath));
|
| }
|
|
|
| - PassRefPtr<EntryArraySync> readEntries(ExceptionState&);
|
| + EntrySyncVector readEntries(ExceptionState&);
|
|
|
| private:
|
| DirectoryReaderSync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
|
|
|