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

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

Issue 461163002: Cleanup namespace usage in Source/core/modules/[mediasource/* to websockets/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months 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/RTCDataChannel.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.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
« no previous file with comments | « Source/modules/mediastream/RTCDataChannel.h ('k') | Source/modules/mediastream/RTCPeerConnection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698