OLD | NEW |
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 MEDIA_BASE_ANDROID_MEDIA_PLAYER_MANAGER_H_ | 5 #ifndef MEDIA_BASE_ANDROID_MEDIA_PLAYER_MANAGER_H_ |
6 #define MEDIA_BASE_ANDROID_MEDIA_PLAYER_MANAGER_H_ | 6 #define MEDIA_BASE_ANDROID_MEDIA_PLAYER_MANAGER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
10 #include "media/base/android/demuxer_stream_player_params.h" | 10 #include "media/base/android/demuxer_stream_player_params.h" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 virtual void OnWaitingForDecryptionKey(int player_id) = 0; | 71 virtual void OnWaitingForDecryptionKey(int player_id) = 0; |
72 | 72 |
73 // Returns the player that's in the fullscreen mode currently. | 73 // Returns the player that's in the fullscreen mode currently. |
74 virtual MediaPlayerAndroid* GetFullscreenPlayer() = 0; | 74 virtual MediaPlayerAndroid* GetFullscreenPlayer() = 0; |
75 | 75 |
76 // Returns the player with the specified id. | 76 // Returns the player with the specified id. |
77 virtual MediaPlayerAndroid* GetPlayer(int player_id) = 0; | 77 virtual MediaPlayerAndroid* GetPlayer(int player_id) = 0; |
78 | 78 |
79 // Called by the player to get a hardware protected surface. | 79 // Called by the player to get a hardware protected surface. |
80 virtual void RequestFullScreen(int player_id) = 0; | 80 virtual void RequestFullScreen(int player_id) = 0; |
| 81 |
| 82 // Called by the player to request to play. The manager should use this |
| 83 // opportunity to check if the current context is appropriate for a media to |
| 84 // play. |
| 85 // Returns whether the request was granted. |
| 86 virtual bool RequestPlay(int player_id) = 0; |
81 }; | 87 }; |
82 | 88 |
83 } // namespace media | 89 } // namespace media |
84 | 90 |
85 #endif // MEDIA_BASE_ANDROID_MEDIA_PLAYER_MANAGER_H_ | 91 #endif // MEDIA_BASE_ANDROID_MEDIA_PLAYER_MANAGER_H_ |
OLD | NEW |