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

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

Issue 932403002: InlinedVisitor: Migrate html to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « Source/core/html/shadow/MediaControlElementTypes.h ('k') | Source/core/html/shadow/MediaControls.h » ('j') | 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 f1076f979b1fef215b7f35cbfcaf26be491b7d5a..5812a400cfbefe53faab80c3c8606d3383e2aae0 100644
--- a/Source/core/html/shadow/MediaControlElementTypes.cpp
+++ b/Source/core/html/shadow/MediaControlElementTypes.cpp
@@ -99,7 +99,7 @@ void MediaControlElement::setDisplayType(MediaControlElementType displayType)
object->setShouldDoFullPaintInvalidation();
}
-void MediaControlElement::trace(Visitor* visitor)
+DEFINE_TRACE(MediaControlElement)
{
visitor->trace(m_element);
}
@@ -112,7 +112,7 @@ MediaControlDivElement::MediaControlDivElement(MediaControls& mediaControls, Med
{
}
-void MediaControlDivElement::trace(Visitor* visitor)
+DEFINE_TRACE(MediaControlDivElement)
{
MediaControlElement::trace(visitor);
HTMLDivElement::trace(visitor);
@@ -131,7 +131,7 @@ bool MediaControlInputElement::isMouseFocusable() const
return false;
}
-void MediaControlInputElement::trace(Visitor* visitor)
+DEFINE_TRACE(MediaControlInputElement)
{
MediaControlElement::trace(visitor);
HTMLInputElement::trace(visitor);
« no previous file with comments | « Source/core/html/shadow/MediaControlElementTypes.h ('k') | Source/core/html/shadow/MediaControls.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698