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

Unified Diff: Source/core/fileapi/FileList.cpp

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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
Index: Source/core/fileapi/FileList.cpp
diff --git a/Source/core/fileapi/FileList.cpp b/Source/core/fileapi/FileList.cpp
index 267a7f5d0562f278aad319a6d7172a76abc305f1..ac996336b9544411aeb02ae9fd98732f41ce727a 100644
--- a/Source/core/fileapi/FileList.cpp
+++ b/Source/core/fileapi/FileList.cpp
@@ -29,6 +29,8 @@
namespace WebCore {
+DEFINE_GC_INFO(FileList);
+
FileList::FileList()
{
ScriptWrappable::init(this);
@@ -50,4 +52,9 @@ Vector<String> FileList::paths() const
return paths;
}
+void FileList::trace(Visitor* visitor)
+{
+ visitor->trace(m_files);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698