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

Unified Diff: Source/core/html/shadow/MediaControlElementTypes.cpp

Issue 385593002: Oilpan: trace MediaControlElement's element reference. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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/html/shadow/MediaControlElementTypes.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/MediaControlElementTypes.cpp
diff --git a/Source/core/html/shadow/MediaControlElementTypes.cpp b/Source/core/html/shadow/MediaControlElementTypes.cpp
index cfd4998beb9490758472f54b5c1765337f2e96c9..b0a51cf0ce8ed0da9460513ae32a1c3927808e8e 100644
--- a/Source/core/html/shadow/MediaControlElementTypes.cpp
+++ b/Source/core/html/shadow/MediaControlElementTypes.cpp
@@ -99,6 +99,11 @@ void MediaControlElement::setDisplayType(MediaControlElementType displayType)
object->paintInvalidationForWholeRenderer();
}
+void MediaControlElement::trace(Visitor* visitor)
+{
+ visitor->trace(m_element);
+}
+
// ----------------------------
MediaControlDivElement::MediaControlDivElement(MediaControls& mediaControls, MediaControlElementType displayType)
@@ -107,6 +112,12 @@ MediaControlDivElement::MediaControlDivElement(MediaControls& mediaControls, Med
{
}
+void MediaControlDivElement::trace(Visitor* visitor)
+{
+ MediaControlElement::trace(visitor);
+ HTMLDivElement::trace(visitor);
+}
+
// ----------------------------
MediaControlInputElement::MediaControlInputElement(MediaControls& mediaControls, MediaControlElementType displayType)
@@ -120,6 +131,12 @@ bool MediaControlInputElement::isMouseFocusable() const
return false;
}
+void MediaControlInputElement::trace(Visitor* visitor)
+{
+ MediaControlElement::trace(visitor);
+ HTMLInputElement::trace(visitor);
+}
+
// ----------------------------
MediaControlTimeDisplayElement::MediaControlTimeDisplayElement(MediaControls& mediaControls, MediaControlElementType displayType)
« no previous file with comments | « Source/core/html/shadow/MediaControlElementTypes.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698