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

Unified Diff: Source/modules/mediastream/RTCSessionDescription.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
Index: Source/modules/mediastream/RTCSessionDescription.h
diff --git a/Source/modules/mediastream/RTCSessionDescription.h b/Source/modules/mediastream/RTCSessionDescription.h
index 447c01b6c4f440b441e1823673c68c4d202d9f29..8e87f89e731cc967ea90e4bc2e00bcb6fdb957ed 100644
--- a/Source/modules/mediastream/RTCSessionDescription.h
+++ b/Source/modules/mediastream/RTCSessionDescription.h
@@ -45,7 +45,7 @@ class ExceptionState;
class RTCSessionDescription FINAL : public RefCounted<RTCSessionDescription>, public ScriptWrappable {
public:
static PassRefPtr<RTCSessionDescription> create(const Dictionary&, ExceptionState&);
- static PassRefPtr<RTCSessionDescription> create(WebKit::WebRTCSessionDescription);
+ static PassRefPtr<RTCSessionDescription> create(blink::WebRTCSessionDescription);
String type();
void setType(const String&, ExceptionState&);
@@ -53,12 +53,12 @@ public:
String sdp();
void setSdp(const String&);
- WebKit::WebRTCSessionDescription webSessionDescription();
+ blink::WebRTCSessionDescription webSessionDescription();
private:
- explicit RTCSessionDescription(WebKit::WebRTCSessionDescription);
+ explicit RTCSessionDescription(blink::WebRTCSessionDescription);
- WebKit::WebRTCSessionDescription m_webSessionDescription;
+ blink::WebRTCSessionDescription m_webSessionDescription;
};
} // namespace WebCore
« no previous file with comments | « Source/modules/mediastream/RTCPeerConnection.cpp ('k') | Source/modules/mediastream/RTCSessionDescription.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698