Index: Source/modules/filesystem/EntriesCallback.h |
diff --git a/Source/modules/filesystem/EntriesCallback.h b/Source/modules/filesystem/EntriesCallback.h |
index 4bb7135350995e905d66ae8726d7aea47fec7f81..c72070786006b4f2e36b9887f15a65036e4aa025 100644 |
--- a/Source/modules/filesystem/EntriesCallback.h |
+++ b/Source/modules/filesystem/EntriesCallback.h |
@@ -31,17 +31,18 @@ |
#ifndef EntriesCallback_h |
#define EntriesCallback_h |
+#include "heap/Handle.h" |
#include "wtf/Vector.h" |
namespace WebCore { |
class Entry; |
-typedef Vector<RefPtr<Entry> > EntryVector; |
+typedef WillBeHeapVector<RefPtrWillBeMember<Entry> > EntryHeapVector; |
class EntriesCallback { |
public: |
virtual ~EntriesCallback() { } |
- virtual void handleEvent(const EntryVector&) = 0; |
+ virtual void handleEvent(const EntryHeapVector&) = 0; |
}; |
} // namespace |