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

Side by Side Diff: content/renderer/media/webmediaplayer_proxy_impl_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: rebase Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PROXY_IMPL_ANDROID_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PROXY_IMPL_ANDROID_H_
6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PROXY_IMPL_ANDROID_H_ 6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PROXY_IMPL_ANDROID_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "content/public/renderer/render_view_observer.h" 10 #include "content/public/renderer/render_view_observer.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 void OnMediaError(int player_id, int error); 71 void OnMediaError(int player_id, int error);
72 void OnVideoSizeChanged(int player_id, int width, int height); 72 void OnVideoSizeChanged(int player_id, int width, int height);
73 void OnTimeUpdate(int player_id, base::TimeDelta current_time); 73 void OnTimeUpdate(int player_id, base::TimeDelta current_time);
74 void OnMediaPlayerReleased(int player_id); 74 void OnMediaPlayerReleased(int player_id);
75 void OnDidExitFullscreen(int player_id); 75 void OnDidExitFullscreen(int player_id);
76 void OnDidEnterFullscreen(int player_id); 76 void OnDidEnterFullscreen(int player_id);
77 void OnPlayerPlay(int player_id); 77 void OnPlayerPlay(int player_id);
78 void OnPlayerPause(int player_id); 78 void OnPlayerPause(int player_id);
79 void OnReadFromDemuxer( 79 void OnReadFromDemuxer(
80 int player_id, media::DemuxerStream::Type type, bool seek_done); 80 int player_id, media::DemuxerStream::Type type, bool seek_done);
81 void OnMediaSeekRequest(int player_id, base::TimeDelta time_to_seek,
82 bool request_texture_peer);
81 83
82 webkit_media::WebMediaPlayerManagerAndroid* manager_; 84 webkit_media::WebMediaPlayerManagerAndroid* manager_;
83 85
84 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerProxyImplAndroid); 86 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerProxyImplAndroid);
85 }; 87 };
86 88
87 } // namespace content 89 } // namespace content
88 90
89 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PROXY_IMPL_ANDROID_H_ 91 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PROXY_IMPL_ANDROID_H_
OLDNEW
« no previous file with comments | « content/common/media/media_player_messages_android.h ('k') | content/renderer/media/webmediaplayer_proxy_impl_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698