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

Unified Diff: Source/web/WebMediaPlayerClientImpl.h

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/web/WebMIDIPermissionRequest.cpp ('k') | Source/web/WebMediaPlayerClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebMediaPlayerClientImpl.h
diff --git a/Source/web/WebMediaPlayerClientImpl.h b/Source/web/WebMediaPlayerClientImpl.h
index c62a7c28e798a9f9eeeaf681b45399a5754e81a4..d32eec73c607186440ee91e79f6326732585d676 100644
--- a/Source/web/WebMediaPlayerClientImpl.h
+++ b/Source/web/WebMediaPlayerClientImpl.h
@@ -51,20 +51,20 @@ class AudioSourceProviderClient;
class HTMLMediaSource;
}
-namespace WebKit {
+namespace blink {
class WebHelperPluginImpl;
class WebAudioSourceProvider;
class WebMediaPlayer;
// This class serves as a bridge between WebCore::MediaPlayer and
-// WebKit::WebMediaPlayer.
+// blink::WebMediaPlayer.
class WebMediaPlayerClientImpl : public WebCore::MediaPlayer, public WebMediaPlayerClient {
public:
static PassOwnPtr<WebCore::MediaPlayer> create(WebCore::MediaPlayerClient*);
- // Returns the encapsulated WebKit::WebMediaPlayer.
+ // Returns the encapsulated blink::WebMediaPlayer.
WebMediaPlayer* mediaPlayer() const;
// WebMediaPlayerClient methods:
@@ -97,7 +97,7 @@ public:
virtual void load(const WTF::String& url) OVERRIDE;
virtual void load(const WTF::String& url, PassRefPtr<WebCore::HTMLMediaSource>) OVERRIDE;
- virtual WebKit::WebLayer* platformLayer() const OVERRIDE;
+ virtual blink::WebLayer* platformLayer() const OVERRIDE;
virtual void play() OVERRIDE;
virtual void pause() OVERRIDE;
virtual void prepareToPlay() OVERRIDE;
@@ -182,7 +182,7 @@ private:
// AudioClientImpl wraps an AudioSourceProviderClient.
// When the audio format is known, Chromium calls setFormat() which then dispatches into WebCore.
- class AudioClientImpl : public WebKit::WebAudioSourceProviderClient {
+ class AudioClientImpl : public blink::WebAudioSourceProviderClient {
public:
AudioClientImpl(WebCore::AudioSourceProviderClient* client)
: m_client(client)
@@ -229,6 +229,6 @@ private:
RefPtr<WebCore::HTMLMediaSource> m_mediaSource;
};
-} // namespace WebKit
+} // namespace blink
#endif
« no previous file with comments | « Source/web/WebMIDIPermissionRequest.cpp ('k') | Source/web/WebMediaPlayerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698