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

Unified Diff: Source/core/html/forms/RadioButtonGroupScope.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/forms/RadioButtonGroupScope.h ('k') | Source/core/html/forms/TextFieldInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/RadioButtonGroupScope.cpp
diff --git a/Source/core/html/forms/RadioButtonGroupScope.cpp b/Source/core/html/forms/RadioButtonGroupScope.cpp
index 924db86fed57e921ec967acf312729068849c536..c459a5b4416d45e47e5da3f9eab348623bb1230a 100644
--- a/Source/core/html/forms/RadioButtonGroupScope.cpp
+++ b/Source/core/html/forms/RadioButtonGroupScope.cpp
@@ -40,7 +40,7 @@ public:
void remove(HTMLInputElement*);
bool contains(HTMLInputElement*) const;
- void trace(Visitor*);
+ DECLARE_TRACE();
private:
RadioButtonGroup();
@@ -174,7 +174,7 @@ bool RadioButtonGroup::contains(HTMLInputElement* button) const
return m_members.contains(button);
}
-void RadioButtonGroup::trace(Visitor* visitor)
+DEFINE_TRACE(RadioButtonGroup)
{
#if ENABLE(OILPAN)
visitor->trace(m_members);
@@ -275,7 +275,7 @@ void RadioButtonGroupScope::removeButton(HTMLInputElement* element)
}
}
-void RadioButtonGroupScope::trace(Visitor* visitor)
+DEFINE_TRACE(RadioButtonGroupScope)
{
#if ENABLE(OILPAN)
visitor->trace(m_nameToGroupMap);
« no previous file with comments | « Source/core/html/forms/RadioButtonGroupScope.h ('k') | Source/core/html/forms/TextFieldInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698