| Index: Source/modules/mediastream/RTCIceCandidate.cpp
|
| diff --git a/Source/modules/mediastream/RTCIceCandidate.cpp b/Source/modules/mediastream/RTCIceCandidate.cpp
|
| index 38367cb07e63970f4e055ce1b99cc6fe94752566..5e02eeb4edd86107581643b502ffe4a55b5c128e 100644
|
| --- a/Source/modules/mediastream/RTCIceCandidate.cpp
|
| +++ b/Source/modules/mediastream/RTCIceCandidate.cpp
|
| @@ -53,15 +53,15 @@ RTCIceCandidate* RTCIceCandidate::create(const Dictionary& dictionary, Exception
|
| unsigned short sdpMLineIndex = 0;
|
| DictionaryHelper::get(dictionary, "sdpMLineIndex", sdpMLineIndex);
|
|
|
| - return new RTCIceCandidate(blink::WebRTCICECandidate(candidate, sdpMid, sdpMLineIndex));
|
| + return new RTCIceCandidate(WebRTCICECandidate(candidate, sdpMid, sdpMLineIndex));
|
| }
|
|
|
| -RTCIceCandidate* RTCIceCandidate::create(blink::WebRTCICECandidate webCandidate)
|
| +RTCIceCandidate* RTCIceCandidate::create(WebRTCICECandidate webCandidate)
|
| {
|
| return new RTCIceCandidate(webCandidate);
|
| }
|
|
|
| -RTCIceCandidate::RTCIceCandidate(blink::WebRTCICECandidate webCandidate)
|
| +RTCIceCandidate::RTCIceCandidate(WebRTCICECandidate webCandidate)
|
| : m_webCandidate(webCandidate)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -82,7 +82,7 @@ unsigned short RTCIceCandidate::sdpMLineIndex() const
|
| return m_webCandidate.sdpMLineIndex();
|
| }
|
|
|
| -blink::WebRTCICECandidate RTCIceCandidate::webCandidate() const
|
| +WebRTCICECandidate RTCIceCandidate::webCandidate() const
|
| {
|
| return m_webCandidate;
|
| }
|
|
|