| 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;
|
| }
|
|
|