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

Unified Diff: public/platform/WebMediaStreamTrack.h

Issue 457353002: Cleanup namespace usage in public/platform/Web[A-M]*.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « 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 76c9be20cbc3b32cf9b884239d1427a5db9507d8..d49565f5714199e146d2713c209129f2d439b36b 100644
--- a/public/platform/WebMediaStreamTrack.h
+++ b/public/platform/WebMediaStreamTrack.h
@@ -30,10 +30,8 @@
#include "WebPrivatePtr.h"
namespace blink {
-class MediaStreamComponent;
-}
-namespace blink {
+class MediaStreamComponent;
class WebAudioSourceProvider;
class WebMediaStream;
class WebMediaStreamSource;
@@ -49,11 +47,11 @@ public:
BLINK_PLATFORM_EXPORT WebMediaStreamTrack owner();
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT void setOwner(blink::MediaStreamComponent*);
+ BLINK_PLATFORM_EXPORT void setOwner(MediaStreamComponent*);
#endif
private:
- blink::MediaStreamComponent* m_owner;
+ MediaStreamComponent* m_owner;
};
WebMediaStreamTrack() { }
@@ -91,15 +89,15 @@ public:
BLINK_PLATFORM_EXPORT void setSourceProvider(WebAudioSourceProvider*);
#if INSIDE_BLINK
- 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;
+ BLINK_PLATFORM_EXPORT WebMediaStreamTrack(PassRefPtr<MediaStreamComponent>);
+ BLINK_PLATFORM_EXPORT WebMediaStreamTrack(MediaStreamComponent*);
+ BLINK_PLATFORM_EXPORT WebMediaStreamTrack& operator=(MediaStreamComponent*);
+ BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<MediaStreamComponent>() const;
+ BLINK_PLATFORM_EXPORT operator MediaStreamComponent*() const;
#endif
private:
- WebPrivatePtr<blink::MediaStreamComponent> m_private;
+ WebPrivatePtr<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