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

Unified Diff: Source/modules/mediastream/RTCSessionDescription.cpp

Issue 469773002: Cleanup blink:: prefix usage in Source/core/modules/[mediasource/*.cpp to websockets/*.cpp] (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
Index: Source/modules/mediastream/RTCSessionDescription.cpp
diff --git a/Source/modules/mediastream/RTCSessionDescription.cpp b/Source/modules/mediastream/RTCSessionDescription.cpp
index 08e69dcfb23441271948635d7b12cfc87805d62a..3c212ab6d4a3bc30b5b86a0bcd8ceb2247947874 100644
--- a/Source/modules/mediastream/RTCSessionDescription.cpp
+++ b/Source/modules/mediastream/RTCSessionDescription.cpp
@@ -59,15 +59,15 @@ RTCSessionDescription* RTCSessionDescription::create(const Dictionary& descripti
String sdp;
DictionaryHelper::get(descriptionInitDict, "sdp", sdp);
- return new RTCSessionDescription(blink::WebRTCSessionDescription(type, sdp));
+ return new RTCSessionDescription(WebRTCSessionDescription(type, sdp));
}
-RTCSessionDescription* RTCSessionDescription::create(blink::WebRTCSessionDescription webSessionDescription)
+RTCSessionDescription* RTCSessionDescription::create(WebRTCSessionDescription webSessionDescription)
{
return new RTCSessionDescription(webSessionDescription);
}
-RTCSessionDescription::RTCSessionDescription(blink::WebRTCSessionDescription webSessionDescription)
+RTCSessionDescription::RTCSessionDescription(WebRTCSessionDescription webSessionDescription)
: m_webSessionDescription(webSessionDescription)
{
ScriptWrappable::init(this);
@@ -96,7 +96,7 @@ void RTCSessionDescription::setSdp(const String& sdp)
m_webSessionDescription.setSDP(sdp);
}
-blink::WebRTCSessionDescription RTCSessionDescription::webSessionDescription()
+WebRTCSessionDescription RTCSessionDescription::webSessionDescription()
{
return m_webSessionDescription;
}
« no previous file with comments | « Source/modules/mediastream/RTCPeerConnection.cpp ('k') | Source/modules/mediastream/RTCSessionDescriptionRequestImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698