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

Unified Diff: Source/core/xml/XMLHttpRequestUpload.h

Issue 106423003: [oilpan] Rename visit to mark. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Address comments. 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
« no previous file with comments | « Source/core/xml/XMLHttpRequest.h ('k') | Source/heap/Handle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XMLHttpRequestUpload.h
diff --git a/Source/core/xml/XMLHttpRequestUpload.h b/Source/core/xml/XMLHttpRequestUpload.h
index df2c05e9620b3e2e6e0df38c720f6698f9ad061e..2fc480ceab743e2e1e9bceb4def11273009e9fae 100644
--- a/Source/core/xml/XMLHttpRequestUpload.h
+++ b/Source/core/xml/XMLHttpRequestUpload.h
@@ -56,9 +56,9 @@ namespace WebCore {
visitor->trace(m_xmlHttpRequest);
}
- virtual void visitWith(Visitor* visitor) const OVERRIDE
+ virtual void adjustAndMark(Visitor* visitor) const OVERRIDE
{
- visitor->visit(this);
+ visitor->mark(this);
}
XMLHttpRequest* xmlHttpRequest() const { return m_xmlHttpRequest; }
« no previous file with comments | « Source/core/xml/XMLHttpRequest.h ('k') | Source/heap/Handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698