| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef DirectoryReader_h | 31 #ifndef DirectoryReader_h |
| 32 #define DirectoryReader_h | 32 #define DirectoryReader_h |
| 33 | 33 |
| 34 #include "bindings/v8/ScriptWrappable.h" | 34 #include "bindings/v8/ScriptWrappable.h" |
| 35 #include "modules/filesystem/DOMFileSystem.h" | 35 #include "modules/filesystem/DOMFileSystem.h" |
| 36 #include "modules/filesystem/DirectoryReaderBase.h" | 36 #include "modules/filesystem/DirectoryReaderBase.h" |
| 37 #include "modules/filesystem/EntriesCallback.h" |
| 37 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 38 #include "wtf/RefCounted.h" | |
| 39 #include "wtf/text/WTFString.h" | 39 #include "wtf/text/WTFString.h" |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 class EntriesCallback; | |
| 44 class EntriesCallbacks; | |
| 45 class ErrorCallback; | 43 class ErrorCallback; |
| 46 | 44 |
| 47 class DirectoryReader : public DirectoryReaderBase, public ScriptWrappable { | 45 class DirectoryReader : public DirectoryReaderBase, public ScriptWrappable { |
| 48 public: | 46 public: |
| 49 static PassRefPtrWillBeRawPtr<DirectoryReader> create(PassRefPtrWillBeRawPtr
<DOMFileSystemBase> fileSystem, const String& fullPath) | 47 static DirectoryReader* create(DOMFileSystemBase* fileSystem, const String&
fullPath) |
| 50 { | 48 { |
| 51 return adoptRefWillBeNoop(new DirectoryReader(fileSystem, fullPath)); | 49 return new DirectoryReader(fileSystem, fullPath); |
| 52 } | 50 } |
| 53 | 51 |
| 54 virtual ~DirectoryReader(); | 52 virtual ~DirectoryReader(); |
| 55 | 53 |
| 56 void readEntries(PassOwnPtr<EntriesCallback>, PassOwnPtr<ErrorCallback> = nu
llptr); | 54 void readEntries(PassOwnPtr<EntriesCallback>, PassOwnPtr<ErrorCallback> = nu
llptr); |
| 57 | 55 |
| 58 DOMFileSystem* filesystem() const { return static_cast<DOMFileSystem*>(m_fil
eSystem.get()); } | 56 DOMFileSystem* filesystem() const { return static_cast<DOMFileSystem*>(m_fil
eSystem.get()); } |
| 59 | 57 |
| 60 virtual void trace(Visitor*) OVERRIDE; | 58 virtual void trace(Visitor*) OVERRIDE; |
| 61 | 59 |
| 62 private: | 60 private: |
| 63 class EntriesCallbackHelper; | 61 class EntriesCallbackHelper; |
| 64 class ErrorCallbackHelper; | 62 class ErrorCallbackHelper; |
| 65 | 63 |
| 66 DirectoryReader(PassRefPtrWillBeRawPtr<DOMFileSystemBase>, const String& ful
lPath); | 64 DirectoryReader(DOMFileSystemBase*, const String& fullPath); |
| 67 | 65 |
| 68 void addEntries(const WillBeHeapVector<RefPtrWillBeMember<Entry> >& entries)
; | 66 void addEntries(const EntryHeapVector& entries); |
| 69 | 67 |
| 70 void onError(FileError*); | 68 void onError(FileError*); |
| 71 | 69 |
| 72 bool m_isReading; | 70 bool m_isReading; |
| 73 WillBeHeapVector<RefPtrWillBeMember<Entry> > m_entries; | 71 EntryHeapVector m_entries; |
| 74 RefPtrWillBeMember<FileError> m_error; | 72 RefPtrWillBeMember<FileError> m_error; |
| 75 OwnPtr<EntriesCallback> m_entriesCallback; | 73 OwnPtr<EntriesCallback> m_entriesCallback; |
| 76 OwnPtr<ErrorCallback> m_errorCallback; | 74 OwnPtr<ErrorCallback> m_errorCallback; |
| 77 }; | 75 }; |
| 78 | 76 |
| 79 } | 77 } |
| 80 | 78 |
| 81 #endif // DirectoryReader_h | 79 #endif // DirectoryReader_h |
| OLD | NEW |