| Index: Source/modules/mediastream/RTCIceCandidate.h
|
| diff --git a/Source/modules/mediastream/RTCIceCandidate.h b/Source/modules/mediastream/RTCIceCandidate.h
|
| index ff63eb6834876c1ff0497d25f8928d4c0bc78ca2..9d934055751354a3e08d5ddff96ce530bd2bf155 100644
|
| --- a/Source/modules/mediastream/RTCIceCandidate.h
|
| +++ b/Source/modules/mediastream/RTCIceCandidate.h
|
| @@ -46,18 +46,18 @@ class ExceptionState;
|
| class RTCIceCandidate FINAL : public RefCounted<RTCIceCandidate>, public ScriptWrappable {
|
| public:
|
| static PassRefPtr<RTCIceCandidate> create(const Dictionary&, ExceptionState&);
|
| - static PassRefPtr<RTCIceCandidate> create(WebKit::WebRTCICECandidate);
|
| + static PassRefPtr<RTCIceCandidate> create(blink::WebRTCICECandidate);
|
|
|
| String candidate() const;
|
| String sdpMid() const;
|
| unsigned short sdpMLineIndex() const;
|
|
|
| - WebKit::WebRTCICECandidate webCandidate();
|
| + blink::WebRTCICECandidate webCandidate();
|
|
|
| private:
|
| - explicit RTCIceCandidate(WebKit::WebRTCICECandidate);
|
| + explicit RTCIceCandidate(blink::WebRTCICECandidate);
|
|
|
| - WebKit::WebRTCICECandidate m_webCandidate;
|
| + blink::WebRTCICECandidate m_webCandidate;
|
| };
|
|
|
| } // namespace WebCore
|
|
|