| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 virtual void OnSeekComplete( | 56 virtual void OnSeekComplete( |
| 57 int player_id, | 57 int player_id, |
| 58 const base::TimeDelta& current_time) = 0; | 58 const base::TimeDelta& current_time) = 0; |
| 59 | 59 |
| 60 // Called when error happens. Args: player ID, error type. | 60 // Called when error happens. Args: player ID, error type. |
| 61 virtual void OnError(int player_id, int error) = 0; | 61 virtual void OnError(int player_id, int error) = 0; |
| 62 | 62 |
| 63 // Called when video size has changed. Args: player ID, width, height. | 63 // Called when video size has changed. Args: player ID, width, height. |
| 64 virtual void OnVideoSizeChanged(int player_id, int width, int height) = 0; | 64 virtual void OnVideoSizeChanged(int player_id, int width, int height) = 0; |
| 65 | 65 |
| 66 // Called when the player thinks it stopped or started making sound. | |
| 67 virtual void OnAudibleStateChanged(int player_id, bool is_audible_now) = 0; | |
| 68 | |
| 69 // Called when the player pauses as a new key is required to decrypt | 66 // Called when the player pauses as a new key is required to decrypt |
| 70 // encrypted content. | 67 // encrypted content. |
| 71 virtual void OnWaitingForDecryptionKey(int player_id) = 0; | 68 virtual void OnWaitingForDecryptionKey(int player_id) = 0; |
| 72 | 69 |
| 73 // Returns the player that's in the fullscreen mode currently. | 70 // Returns the player that's in the fullscreen mode currently. |
| 74 virtual MediaPlayerAndroid* GetFullscreenPlayer() = 0; | 71 virtual MediaPlayerAndroid* GetFullscreenPlayer() = 0; |
| 75 | 72 |
| 76 // Returns the player with the specified id. | 73 // Returns the player with the specified id. |
| 77 virtual MediaPlayerAndroid* GetPlayer(int player_id) = 0; | 74 virtual MediaPlayerAndroid* GetPlayer(int player_id) = 0; |
| 78 | 75 |
| 79 // Called by the player to request to play. The manager should use this | 76 // Called by the player to request to play. The manager should use this |
| 80 // opportunity to check if the current context is appropriate for a media to | 77 // opportunity to check if the current context is appropriate for a media to |
| 81 // play. | 78 // play. |
| 82 // Returns whether the request was granted. | 79 // Returns whether the request was granted. |
| 83 virtual bool RequestPlay(int player_id) = 0; | 80 virtual bool RequestPlay(int player_id) = 0; |
| 84 }; | 81 }; |
| 85 | 82 |
| 86 } // namespace media | 83 } // namespace media |
| 87 | 84 |
| 88 #endif // MEDIA_BASE_ANDROID_MEDIA_PLAYER_MANAGER_H_ | 85 #endif // MEDIA_BASE_ANDROID_MEDIA_PLAYER_MANAGER_H_ |
| OLD | NEW |