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

Unified Diff: Source/core/html/FileInputType.cpp

Issue 20123003: [oilpan] The Node hierarchy should have correct accept method chains (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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/core/dom/Text.cpp ('k') | Source/core/html/HTMLAnchorElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/FileInputType.cpp
diff --git a/Source/core/html/FileInputType.cpp b/Source/core/html/FileInputType.cpp
index fbf3d77bda90b3b1548b1710967edcde795586af..762d98b38d603959e6114efe3d0b5b149ca6c0be 100644
--- a/Source/core/html/FileInputType.cpp
+++ b/Source/core/html/FileInputType.cpp
@@ -54,6 +54,8 @@ public:
static PassRefPtr<UploadButtonElement> create(Handle<Document>);
static PassRefPtr<UploadButtonElement> createForMultiple(Handle<Document>);
+ virtual void acceptHeapVisitor(Visitor*) const OVERRIDE;
+
private:
UploadButtonElement(Handle<Document>);
@@ -87,6 +89,11 @@ const AtomicString& UploadButtonElement::shadowPseudoId() const
return pseudoId;
}
+void UploadButtonElement::acceptHeapVisitor(Visitor* visitor) const
+{
+ HTMLInputElement::acceptHeapVisitor(visitor);
+}
+
inline FileInputType::FileInputType(Handle<HTMLInputElement> element)
: BaseClickableWithKeyInputType(element)
, m_fileList(FileList::create())
« no previous file with comments | « Source/core/dom/Text.cpp ('k') | Source/core/html/HTMLAnchorElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698