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

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

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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.cpp ('k') | Source/modules/mediastream/RTCIceCandidate.cpp » ('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 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
« no previous file with comments | « Source/modules/mediastream/RTCDataChannel.cpp ('k') | Source/modules/mediastream/RTCIceCandidate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698