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

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

Issue 106423003: [oilpan] Rename visit to mark. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Fix typo Created 7 years 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
Index: Source/core/html/HTMLObjectElement.cpp
diff --git a/Source/core/html/HTMLObjectElement.cpp b/Source/core/html/HTMLObjectElement.cpp
index 3efa7aec517625577a681233b3daa7020b38d8a2..c5a05c0ac920817a6244695390039de56f36778a 100644
--- a/Source/core/html/HTMLObjectElement.cpp
+++ b/Source/core/html/HTMLObjectElement.cpp
@@ -508,9 +508,9 @@ HTMLFormElement* HTMLObjectElement::virtualForm() const
return FormAssociatedElement::form();
}
-void HTMLObjectElement::visitWith(Visitor* visitor) const
+void HTMLObjectElement::adjustAndMark(Visitor* visitor) const
{
- visitor->visit(this);
+ visitor->mark(this);
}
void HTMLObjectElement::trace(Visitor* visitor)

Powered by Google App Engine
This is Rietveld 408576698