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

Unified Diff: Source/modules/mediastream/RTCIceCandidate.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
« no previous file with comments | « Source/modules/mediastream/RTCDataChannel.cpp ('k') | Source/modules/mediastream/RTCPeerConnection.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCIceCandidate.cpp
diff --git a/Source/modules/mediastream/RTCIceCandidate.cpp b/Source/modules/mediastream/RTCIceCandidate.cpp
index 38367cb07e63970f4e055ce1b99cc6fe94752566..5e02eeb4edd86107581643b502ffe4a55b5c128e 100644
--- a/Source/modules/mediastream/RTCIceCandidate.cpp
+++ b/Source/modules/mediastream/RTCIceCandidate.cpp
@@ -53,15 +53,15 @@ RTCIceCandidate* RTCIceCandidate::create(const Dictionary& dictionary, Exception
unsigned short sdpMLineIndex = 0;
DictionaryHelper::get(dictionary, "sdpMLineIndex", sdpMLineIndex);
- return new RTCIceCandidate(blink::WebRTCICECandidate(candidate, sdpMid, sdpMLineIndex));
+ return new RTCIceCandidate(WebRTCICECandidate(candidate, sdpMid, sdpMLineIndex));
}
-RTCIceCandidate* RTCIceCandidate::create(blink::WebRTCICECandidate webCandidate)
+RTCIceCandidate* RTCIceCandidate::create(WebRTCICECandidate webCandidate)
{
return new RTCIceCandidate(webCandidate);
}
-RTCIceCandidate::RTCIceCandidate(blink::WebRTCICECandidate webCandidate)
+RTCIceCandidate::RTCIceCandidate(WebRTCICECandidate webCandidate)
: m_webCandidate(webCandidate)
{
ScriptWrappable::init(this);
@@ -82,7 +82,7 @@ unsigned short RTCIceCandidate::sdpMLineIndex() const
return m_webCandidate.sdpMLineIndex();
}
-blink::WebRTCICECandidate RTCIceCandidate::webCandidate() const
+WebRTCICECandidate RTCIceCandidate::webCandidate() const
{
return m_webCandidate;
}
« no previous file with comments | « Source/modules/mediastream/RTCDataChannel.cpp ('k') | Source/modules/mediastream/RTCPeerConnection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698