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

Side by Side Diff: webkit/media/android/webmediaplayer_proxy_android.h

Issue 10979047: Upstream fullscreen video implementation for android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merging latest changes Created 8 years, 2 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
« no previous file with comments | « webkit/media/android/webmediaplayer_manager_android.cc ('k') | webkit/media/webkit_media.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_ 5 #ifndef WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_
6 #define WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_ 6 #define WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/time.h" 10 #include "base/time.h"
(...skipping 19 matching lines...) Expand all
30 virtual void Pause(int player_id) = 0; 30 virtual void Pause(int player_id) = 0;
31 31
32 // Perform seek on the player. 32 // Perform seek on the player.
33 virtual void Seek(int player_id, base::TimeDelta time) = 0; 33 virtual void Seek(int player_id, base::TimeDelta time) = 0;
34 34
35 // Release resources for the player. 35 // Release resources for the player.
36 virtual void ReleaseResources(int player_id) = 0; 36 virtual void ReleaseResources(int player_id) = 0;
37 37
38 // Destroy the player in the browser process 38 // Destroy the player in the browser process
39 virtual void DestroyPlayer(int player_id) = 0; 39 virtual void DestroyPlayer(int player_id) = 0;
40
41 // Request the player to enter fullscreen.
42 virtual void EnterFullscreen(int player_id) = 0;
43
44 // Request the player to exit fullscreen.
45 virtual void ExitFullscreen(int player_id) = 0;
40 }; 46 };
41 47
42 } // namespace webkit_media 48 } // namespace webkit_media
43 49
44 #endif // WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_ 50 #endif // WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_PROXY_ANDROID_H_
OLDNEW
« no previous file with comments | « webkit/media/android/webmediaplayer_manager_android.cc ('k') | webkit/media/webkit_media.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698