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

Unified Diff: public/platform/WebMediaStreamTrack.h

Issue 401973003: Rename WebCore namespace to blink in Public (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 | « public/platform/WebMediaStreamSource.h ('k') | public/platform/WebMediaStreamTrackSourcesRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebMediaStreamTrack.h
diff --git a/public/platform/WebMediaStreamTrack.h b/public/platform/WebMediaStreamTrack.h
index e08c1f90fb01c97fd0d9e8884e8cb66f794a0018..76c9be20cbc3b32cf9b884239d1427a5db9507d8 100644
--- a/public/platform/WebMediaStreamTrack.h
+++ b/public/platform/WebMediaStreamTrack.h
@@ -29,7 +29,7 @@
#include "WebNonCopyable.h"
#include "WebPrivatePtr.h"
-namespace WebCore {
+namespace blink {
class MediaStreamComponent;
}
@@ -49,11 +49,11 @@ public:
BLINK_PLATFORM_EXPORT WebMediaStreamTrack owner();
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT void setOwner(WebCore::MediaStreamComponent*);
+ BLINK_PLATFORM_EXPORT void setOwner(blink::MediaStreamComponent*);
#endif
private:
- WebCore::MediaStreamComponent* m_owner;
+ blink::MediaStreamComponent* m_owner;
};
WebMediaStreamTrack() { }
@@ -91,15 +91,15 @@ public:
BLINK_PLATFORM_EXPORT void setSourceProvider(WebAudioSourceProvider*);
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT WebMediaStreamTrack(PassRefPtr<WebCore::MediaStreamComponent>);
- BLINK_PLATFORM_EXPORT WebMediaStreamTrack(WebCore::MediaStreamComponent*);
- BLINK_PLATFORM_EXPORT WebMediaStreamTrack& operator=(WebCore::MediaStreamComponent*);
- BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<WebCore::MediaStreamComponent>() const;
- BLINK_PLATFORM_EXPORT operator WebCore::MediaStreamComponent*() const;
+ BLINK_PLATFORM_EXPORT WebMediaStreamTrack(PassRefPtr<blink::MediaStreamComponent>);
+ BLINK_PLATFORM_EXPORT WebMediaStreamTrack(blink::MediaStreamComponent*);
+ BLINK_PLATFORM_EXPORT WebMediaStreamTrack& operator=(blink::MediaStreamComponent*);
+ BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<blink::MediaStreamComponent>() const;
+ BLINK_PLATFORM_EXPORT operator blink::MediaStreamComponent*() const;
#endif
private:
- WebPrivatePtr<WebCore::MediaStreamComponent> m_private;
+ WebPrivatePtr<blink::MediaStreamComponent> m_private;
};
} // namespace blink
« no previous file with comments | « public/platform/WebMediaStreamSource.h ('k') | public/platform/WebMediaStreamTrackSourcesRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698