Index: Source/modules/mediastream/RTCIceCandidate.h |
diff --git a/Source/modules/mediastream/RTCIceCandidate.h b/Source/modules/mediastream/RTCIceCandidate.h |
index ab12a87f610d18c511bbb237b69f4da45143eff8..448449661213c582ac3371e4a202e57b062f1d1a 100644 |
--- a/Source/modules/mediastream/RTCIceCandidate.h |
+++ b/Source/modules/mediastream/RTCIceCandidate.h |
@@ -43,7 +43,7 @@ class ExceptionState; |
class RTCIceCandidate FINAL : public GarbageCollectedFinalized<RTCIceCandidate>, public ScriptWrappable { |
public: |
static RTCIceCandidate* create(const Dictionary&, ExceptionState&); |
- static RTCIceCandidate* create(blink::WebRTCICECandidate); |
+ static RTCIceCandidate* create(WebRTCICECandidate); |
String candidate() const; |
void setCandidate(String); |
@@ -52,14 +52,14 @@ public: |
unsigned short sdpMLineIndex() const; |
void setSdpMLineIndex(unsigned short); |
- blink::WebRTCICECandidate webCandidate() const; |
+ WebRTCICECandidate webCandidate() const; |
void trace(Visitor*) { } |
private: |
- explicit RTCIceCandidate(blink::WebRTCICECandidate); |
+ explicit RTCIceCandidate(WebRTCICECandidate); |
- blink::WebRTCICECandidate m_webCandidate; |
+ WebRTCICECandidate m_webCandidate; |
}; |
} // namespace blink |