| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ | 6 #define CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 bool OnMessageReceived(const IPC::Message& msg) override; | 42 bool OnMessageReceived(const IPC::Message& msg) override; |
| 43 void WasHidden() override; | 43 void WasHidden() override; |
| 44 | 44 |
| 45 // Initializes a MediaPlayerAndroid object in browser process. | 45 // Initializes a MediaPlayerAndroid object in browser process. |
| 46 void Initialize(MediaPlayerHostMsg_Initialize_Type type, | 46 void Initialize(MediaPlayerHostMsg_Initialize_Type type, |
| 47 int player_id, | 47 int player_id, |
| 48 const GURL& url, | 48 const GURL& url, |
| 49 const GURL& first_party_for_cookies, | 49 const GURL& first_party_for_cookies, |
| 50 int demuxer_client_id, | 50 int demuxer_client_id, |
| 51 const GURL& frame_url, | 51 const GURL& frame_url, |
| 52 bool allow_credentials) override; | 52 bool allow_credentials, |
| 53 int delegate_id) override; |
| 53 | 54 |
| 54 // Starts the player. | 55 // Starts the player. |
| 55 void Start(int player_id) override; | 56 void Start(int player_id) override; |
| 56 | 57 |
| 57 // Pauses the player. | 58 // Pauses the player. |
| 58 // is_media_related_action should be true if this pause is coming from an | 59 // is_media_related_action should be true if this pause is coming from an |
| 59 // an action that explicitly pauses the video (user pressing pause, JS, etc.) | 60 // an action that explicitly pauses the video (user pressing pause, JS, etc.) |
| 60 // Otherwise it should be false if Pause is being called due to other reasons | 61 // Otherwise it should be false if Pause is being called due to other reasons |
| 61 // (cleanup, freeing resources, etc.) | 62 // (cleanup, freeing resources, etc.) |
| 62 void Pause(int player_id, bool is_media_related_action) override; | 63 void Pause(int player_id, bool is_media_related_action) override; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 std::map<int, media::RendererMediaPlayerInterface*> media_players_; | 148 std::map<int, media::RendererMediaPlayerInterface*> media_players_; |
| 148 | 149 |
| 149 int next_media_player_id_; | 150 int next_media_player_id_; |
| 150 | 151 |
| 151 DISALLOW_COPY_AND_ASSIGN(RendererMediaPlayerManager); | 152 DISALLOW_COPY_AND_ASSIGN(RendererMediaPlayerManager); |
| 152 }; | 153 }; |
| 153 | 154 |
| 154 } // namespace content | 155 } // namespace content |
| 155 | 156 |
| 156 #endif // CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ | 157 #endif // CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ |
| OLD | NEW |