Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1007)

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: Rebase Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/filesystem/DirectoryReaderSync.idl ('k') | Source/modules/filesystem/Entry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/modules/filesystem/DirectoryReaderSync.idl ('k') | Source/modules/filesystem/Entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698