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

Unified Diff: Source/modules/mediastream/RTCIceCandidate.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/modules/mediastream/RTCIceCandidate.h ('k') | Source/modules/mediastream/RTCPeerConnection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCIceCandidate.cpp
diff --git a/Source/modules/mediastream/RTCIceCandidate.cpp b/Source/modules/mediastream/RTCIceCandidate.cpp
index b98148618bdc90e0b3ab6df464ee9d86781e95d8..54348a189bb07fc50cd8799427fa70c7f6cf4afe 100644
--- a/Source/modules/mediastream/RTCIceCandidate.cpp
+++ b/Source/modules/mediastream/RTCIceCandidate.cpp
@@ -54,15 +54,15 @@ PassRefPtr<RTCIceCandidate> RTCIceCandidate::create(const Dictionary& dictionary
unsigned short sdpMLineIndex = 0;
dictionary.get("sdpMLineIndex", sdpMLineIndex);
- return adoptRef(new RTCIceCandidate(WebKit::WebRTCICECandidate(candidate, sdpMid, sdpMLineIndex)));
+ return adoptRef(new RTCIceCandidate(blink::WebRTCICECandidate(candidate, sdpMid, sdpMLineIndex)));
}
-PassRefPtr<RTCIceCandidate> RTCIceCandidate::create(WebKit::WebRTCICECandidate webCandidate)
+PassRefPtr<RTCIceCandidate> RTCIceCandidate::create(blink::WebRTCICECandidate webCandidate)
{
return adoptRef(new RTCIceCandidate(webCandidate));
}
-RTCIceCandidate::RTCIceCandidate(WebKit::WebRTCICECandidate webCandidate)
+RTCIceCandidate::RTCIceCandidate(blink::WebRTCICECandidate webCandidate)
: m_webCandidate(webCandidate)
{
ScriptWrappable::init(this);
@@ -83,7 +83,7 @@ unsigned short RTCIceCandidate::sdpMLineIndex() const
return m_webCandidate.sdpMLineIndex();
}
-WebKit::WebRTCICECandidate RTCIceCandidate::webCandidate()
+blink::WebRTCICECandidate RTCIceCandidate::webCandidate()
{
return m_webCandidate;
}
« no previous file with comments | « Source/modules/mediastream/RTCIceCandidate.h ('k') | Source/modules/mediastream/RTCPeerConnection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698