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

Unified Diff: Source/core/html/forms/FormController.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/FormController.h ('k') | Source/core/html/forms/InputTypeView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/FormController.cpp
diff --git a/Source/core/html/forms/FormController.cpp b/Source/core/html/forms/FormController.cpp
index 6511bdc8972f4c2cd8454c4fba4946f38f476572..4eb89c73c2890d508eafd747174b546a1267d2a1 100644
--- a/Source/core/html/forms/FormController.cpp
+++ b/Source/core/html/forms/FormController.cpp
@@ -294,7 +294,7 @@ class FormKeyGenerator final : public NoBaseWillBeGarbageCollectedFinalized<Form
public:
static PassOwnPtrWillBeRawPtr<FormKeyGenerator> create() { return adoptPtrWillBeNoop(new FormKeyGenerator); }
- void trace(Visitor* visitor)
+ DEFINE_INLINE_TRACE()
{
#if ENABLE(OILPAN)
visitor->trace(m_formToKeyMap);
@@ -389,7 +389,7 @@ PassRefPtrWillBeRawPtr<DocumentState> DocumentState::create()
DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DocumentState)
-void DocumentState::trace(Visitor* visitor)
+DEFINE_TRACE(DocumentState)
{
#if ENABLE(OILPAN)
visitor->trace(m_formControls);
@@ -456,7 +456,7 @@ FormController::~FormController()
{
}
-void FormController::trace(Visitor* visitor)
+DEFINE_TRACE(FormController)
{
visitor->trace(m_radioButtonGroupScope);
visitor->trace(m_documentState);
« no previous file with comments | « Source/core/html/forms/FormController.h ('k') | Source/core/html/forms/InputTypeView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698