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

Unified Diff: webkit/media/android/webmediaplayer_android.h

Issue 15499006: Enable seek in fullscreen mode for MSE impl on android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 7 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 side-by-side diff with in-line comments
Download patch
Index: webkit/media/android/webmediaplayer_android.h
diff --git a/webkit/media/android/webmediaplayer_android.h b/webkit/media/android/webmediaplayer_android.h
index c492910e9422ef6bbb4d75d529864e270a2d1952..4d6746602544859e1f2034c0e4a7ad5f2a93f97b 100644
--- a/webkit/media/android/webmediaplayer_android.h
+++ b/webkit/media/android/webmediaplayer_android.h
@@ -147,16 +147,17 @@ class WebMediaPlayerAndroid
OVERRIDE;
// Media player callback handlers.
- virtual void OnMediaMetadataChanged(base::TimeDelta duration, int width,
acolwell GONE FROM CHROMIUM 2013/05/21 17:49:42 Why is this being removed?
qinmin 2013/05/21 23:04:56 Removed all the virutal keyword. This class is no
+ void OnMediaMetadataChanged(base::TimeDelta duration, int width,
int height, bool success);
- virtual void OnPlaybackComplete();
- virtual void OnBufferingUpdate(int percentage);
- virtual void OnSeekComplete(base::TimeDelta current_time);
- virtual void OnMediaError(int error_type);
- virtual void OnVideoSizeChanged(int width, int height);
+ void OnPlaybackComplete();
+ void OnBufferingUpdate(int percentage);
+ void OnSeekComplete(base::TimeDelta current_time);
+ void OnMediaError(int error_type);
+ void OnVideoSizeChanged(int width, int height);
+ void OnMediaSeekRequest(base::TimeDelta time_to_seek);
// Called to update the current time.
- virtual void OnTimeUpdate(base::TimeDelta current_time);
+ void OnTimeUpdate(base::TimeDelta current_time);
// Functions called when media player status changes.
void OnMediaPlayerPlay();

Powered by Google App Engine
This is Rietveld 408576698