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

Unified Diff: Source/modules/mediastream/RTCPeerConnection.h

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/modules/mediastream/RTCPeerConnection.h
diff --git a/Source/modules/mediastream/RTCPeerConnection.h b/Source/modules/mediastream/RTCPeerConnection.h
index 4487a7e7bd3b24b42b4df80f3ff8a41cb5b0f07d..7d2d247079c268fe9d9a1e6893872a31f428dded 100644
--- a/Source/modules/mediastream/RTCPeerConnection.h
+++ b/Source/modules/mediastream/RTCPeerConnection.h
@@ -67,9 +67,9 @@ public:
virtual void trace(Visitor*) { }
- virtual void visitWith(Visitor* visitor) const OVERRIDE
+ virtual void adjustAndMark(Visitor* visitor) const OVERRIDE
{
- visitor->visit(this);
+ visitor->mark(this);
}
void createOffer(PassRefPtr<RTCSessionDescriptionCallback>, PassRefPtr<RTCErrorCallback>, const Dictionary& mediaConstraints, ExceptionCode&);

Powered by Google App Engine
This is Rietveld 408576698