summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h')
-rw-r--r--chromium/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h b/chromium/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h
index 4bb71353509..85e0d8e59b1 100644
--- a/chromium/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h
+++ b/chromium/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h
@@ -31,17 +31,17 @@
#ifndef EntriesCallback_h
#define EntriesCallback_h
-#include "wtf/Vector.h"
+#include "platform/heap/Handle.h"
namespace WebCore {
class Entry;
-typedef Vector<RefPtr<Entry> > EntryVector;
+typedef HeapVector<Member<Entry> > EntryHeapVector;
class EntriesCallback {
public:
virtual ~EntriesCallback() { }
- virtual void handleEvent(const EntryVector&) = 0;
+ virtual void handleEvent(const EntryHeapVector&) = 0;
};
} // namespace