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

Unified Diff: Source/platform/exported/WebMediaStreamSource.cpp

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/platform/exported/WebMediaStream.cpp ('k') | Source/platform/exported/WebMediaStreamTrack.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebMediaStreamSource.cpp
diff --git a/Source/platform/exported/WebMediaStreamSource.cpp b/Source/platform/exported/WebMediaStreamSource.cpp
index f8a6131df5733e14e30d4c6b31d6f459ad7a49bb..c29ce5db7df1a000a52fd6881c001e613b72f496 100644
--- a/Source/platform/exported/WebMediaStreamSource.cpp
+++ b/Source/platform/exported/WebMediaStreamSource.cpp
@@ -41,7 +41,7 @@
#include "wtf/PassOwnPtr.h"
#include "wtf/Vector.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -65,7 +65,7 @@ WebMediaStreamSource WebMediaStreamSource::ExtraData::owner()
return WebMediaStreamSource(m_owner);
}
-void WebMediaStreamSource::ExtraData::setOwner(WebCore::MediaStreamSource* owner)
+void WebMediaStreamSource::ExtraData::setOwner(blink::MediaStreamSource* owner)
{
ASSERT(!m_owner);
m_owner = owner;
@@ -76,7 +76,7 @@ WebMediaStreamSource::WebMediaStreamSource(const PassRefPtr<MediaStreamSource>&
{
}
-WebMediaStreamSource& WebMediaStreamSource::operator=(WebCore::MediaStreamSource* mediaStreamSource)
+WebMediaStreamSource& WebMediaStreamSource::operator=(blink::MediaStreamSource* mediaStreamSource)
{
m_private = mediaStreamSource;
return *this;
@@ -168,7 +168,7 @@ bool WebMediaStreamSource::requiresAudioConsumer() const
return m_private->requiresAudioConsumer();
}
-class ConsumerWrapper : public WebCore::AudioDestinationConsumer {
+class ConsumerWrapper : public blink::AudioDestinationConsumer {
public:
static PassRefPtr<ConsumerWrapper> create(WebAudioDestinationConsumer* consumer)
{
« no previous file with comments | « Source/platform/exported/WebMediaStream.cpp ('k') | Source/platform/exported/WebMediaStreamTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698