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

Unified Diff: Source/core/css/CSSRule.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/css/CSSRule.cpp
diff --git a/Source/core/css/CSSRule.cpp b/Source/core/css/CSSRule.cpp
index 712a545c471d0a6fdd98b4b1364aa07b03ad86d6..0cea5fb5e63c3ae2978b07b0b34d4391249dbcc8 100644
--- a/Source/core/css/CSSRule.cpp
+++ b/Source/core/css/CSSRule.cpp
@@ -70,9 +70,9 @@ const CSSParserContext& CSSRule::parserContext() const
void CSSRule::trace(Visitor* visitor)
{
if (m_parentIsRule)
- visitor->visit(m_parentRule);
+ visitor->mark(m_parentRule);
else
- visitor->visit(m_parentStyleSheet);
+ visitor->mark(m_parentStyleSheet);
}
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698