Chromium Code Reviews

Unified Diff: Source/modules/filesystem/EntriesCallback.h

Issue 188503002: Oilpan: add transition types to FileSystem APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Avoid DirectoryReaderBase virtuals Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/modules/filesystem/EntriesCallback.h
diff --git a/Source/modules/filesystem/EntriesCallback.h b/Source/modules/filesystem/EntriesCallback.h
index 4bb7135350995e905d66ae8726d7aea47fec7f81..1c2f187f680e96985f64a6a2bcef9e64160546b3 100644
--- a/Source/modules/filesystem/EntriesCallback.h
+++ b/Source/modules/filesystem/EntriesCallback.h
@@ -31,12 +31,13 @@
#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> > EntryVector;
haraken 2014/03/07 08:24:35 EntryVector => EntryHeapVector
sof 2014/03/07 09:37:36 Done.
class EntriesCallback {
public:

Powered by Google App Engine