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

Side by Side Diff: Source/web/WebMediaPlayerClientImpl.h

Issue 291873002: Eliminate MediaPlayer & MediaPlayerClient abstractions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: updated as per the review comments Created 6 years, 7 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 unified diff | Download patch
« no previous file with comments | « Source/platform/graphics/media/MediaPlayer.h ('k') | Source/web/WebMediaPlayerClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 virtual void mediaSourceOpened(WebMediaSource*) OVERRIDE; 90 virtual void mediaSourceOpened(WebMediaSource*) OVERRIDE;
91 virtual void requestFullscreen() OVERRIDE; 91 virtual void requestFullscreen() OVERRIDE;
92 virtual void requestSeek(double) OVERRIDE; 92 virtual void requestSeek(double) OVERRIDE;
93 93
94 // MediaPlayer methods: 94 // MediaPlayer methods:
95 virtual WebMediaPlayer* webMediaPlayer() const OVERRIDE; 95 virtual WebMediaPlayer* webMediaPlayer() const OVERRIDE;
96 virtual void load(WebMediaPlayer::LoadType, const WTF::String& url, WebMedia Player::CORSMode) OVERRIDE; 96 virtual void load(WebMediaPlayer::LoadType, const WTF::String& url, WebMedia Player::CORSMode) OVERRIDE;
97 virtual void play() OVERRIDE; 97 virtual void play() OVERRIDE;
98 virtual void pause() OVERRIDE; 98 virtual void pause() OVERRIDE;
99 virtual bool supportsSave() const OVERRIDE; 99 virtual bool supportsSave() const OVERRIDE;
100 virtual WebCore::IntSize naturalSize() const OVERRIDE;
101 virtual bool hasVideo() const OVERRIDE;
102 virtual bool hasAudio() const OVERRIDE;
103 virtual double duration() const OVERRIDE; 100 virtual double duration() const OVERRIDE;
104 virtual double currentTime() const OVERRIDE; 101 virtual double currentTime() const OVERRIDE;
105 virtual void seek(double time) OVERRIDE; 102 virtual void seek(double time) OVERRIDE;
106 virtual bool seeking() const OVERRIDE; 103 virtual bool seeking() const OVERRIDE;
107 virtual double rate() const OVERRIDE; 104 virtual double rate() const OVERRIDE;
108 virtual void setRate(double) OVERRIDE; 105 virtual void setRate(double) OVERRIDE;
109 virtual bool paused() const OVERRIDE; 106 virtual bool paused() const OVERRIDE;
110 virtual void setPoster(const WebCore::KURL&) OVERRIDE; 107 virtual void setPoster(const WebCore::KURL&) OVERRIDE;
111 virtual WebCore::MediaPlayer::NetworkState networkState() const OVERRIDE; 108 virtual WebCore::MediaPlayer::NetworkState networkState() const OVERRIDE;
112 virtual WebCore::MediaPlayer::ReadyState readyState() const OVERRIDE; 109 virtual WebCore::MediaPlayer::ReadyState readyState() const OVERRIDE;
113 virtual double maxTimeSeekable() const OVERRIDE; 110 virtual double maxTimeSeekable() const OVERRIDE;
114 virtual WTF::PassRefPtr<WebCore::TimeRanges> buffered() const OVERRIDE; 111 virtual WTF::PassRefPtr<WebCore::TimeRanges> buffered() const OVERRIDE;
115 virtual bool didLoadingProgress() const OVERRIDE; 112 virtual bool didLoadingProgress() const OVERRIDE;
116 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&) OVERR IDE; 113 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&) OVERR IDE;
117 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platfo rm3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premul tiplyAlpha, bool flipY) OVERRIDE; 114 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platfo rm3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premul tiplyAlpha, bool flipY) OVERRIDE;
118 virtual void setPreload(WebCore::MediaPlayer::Preload) OVERRIDE; 115 virtual void setPreload(WebCore::MediaPlayer::Preload) OVERRIDE;
119 virtual bool hasSingleSecurityOrigin() const OVERRIDE; 116 virtual bool hasSingleSecurityOrigin() const OVERRIDE;
120 virtual bool didPassCORSAccessCheck() const OVERRIDE;
121 virtual double mediaTimeForTimeValue(double timeValue) const OVERRIDE; 117 virtual double mediaTimeForTimeValue(double timeValue) const OVERRIDE;
122 virtual unsigned decodedFrameCount() const OVERRIDE;
123 virtual unsigned droppedFrameCount() const OVERRIDE;
124 virtual unsigned corruptedFrameCount() const OVERRIDE;
125 virtual unsigned audioDecodedByteCount() const OVERRIDE;
126 virtual unsigned videoDecodedByteCount() const OVERRIDE;
127 virtual void showFullscreenOverlay() OVERRIDE; 118 virtual void showFullscreenOverlay() OVERRIDE;
128 virtual void hideFullscreenOverlay() OVERRIDE; 119 virtual void hideFullscreenOverlay() OVERRIDE;
129 virtual bool canShowFullscreenOverlay() const OVERRIDE; 120 virtual bool canShowFullscreenOverlay() const OVERRIDE;
130 121
131 #if ENABLE(WEB_AUDIO) 122 #if ENABLE(WEB_AUDIO)
132 virtual WebCore::AudioSourceProvider* audioSourceProvider() OVERRIDE; 123 virtual WebCore::AudioSourceProvider* audioSourceProvider() OVERRIDE;
133 #endif 124 #endif
134 125
135 private: 126 private:
136 explicit WebMediaPlayerClientImpl(WebCore::MediaPlayerClient*); 127 explicit WebMediaPlayerClientImpl(WebCore::MediaPlayerClient*);
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 Mutex provideInputLock; 187 Mutex provideInputLock;
197 }; 188 };
198 189
199 AudioSourceProviderImpl m_audioSourceProvider; 190 AudioSourceProviderImpl m_audioSourceProvider;
200 #endif 191 #endif
201 }; 192 };
202 193
203 } // namespace blink 194 } // namespace blink
204 195
205 #endif 196 #endif
OLDNEW
« no previous file with comments | « Source/platform/graphics/media/MediaPlayer.h ('k') | Source/web/WebMediaPlayerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698