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_BRIDGE_H_ | 5 #ifndef MEDIA_BASE_ANDROID_MEDIA_PLAYER_BRIDGE_H_ |
6 #define MEDIA_BASE_ANDROID_MEDIA_PLAYER_BRIDGE_H_ | 6 #define MEDIA_BASE_ANDROID_MEDIA_PLAYER_BRIDGE_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 // hand, it needs to call ReleaseMediaResources() when it is done with | 42 // hand, it needs to call ReleaseMediaResources() when it is done with |
43 // decoding. MediaPlayerBridge also forwards Android MediaPlayer callbacks to | 43 // decoding. MediaPlayerBridge also forwards Android MediaPlayer callbacks to |
44 // the |manager| when needed. | 44 // the |manager| when needed. |
45 MediaPlayerBridge(int player_id, | 45 MediaPlayerBridge(int player_id, |
46 const GURL& url, | 46 const GURL& url, |
47 const GURL& first_party_for_cookies, | 47 const GURL& first_party_for_cookies, |
48 const std::string& user_agent, | 48 const std::string& user_agent, |
49 bool hide_url_log, | 49 bool hide_url_log, |
50 MediaPlayerManager* manager, | 50 MediaPlayerManager* manager, |
51 const RequestMediaResourcesCB& request_media_resources_cb, | 51 const RequestMediaResourcesCB& request_media_resources_cb, |
52 const ReleaseMediaResourcesCB& release_media_resources_cb); | 52 const ReleaseMediaResourcesCB& release_media_resources_cb, |
| 53 const GURL& frame_url); |
53 virtual ~MediaPlayerBridge(); | 54 virtual ~MediaPlayerBridge(); |
54 | 55 |
55 // Initialize this object and extract the metadata from the media. | 56 // Initialize this object and extract the metadata from the media. |
56 virtual void Initialize(); | 57 virtual void Initialize(); |
57 | 58 |
58 // MediaPlayerAndroid implementation. | 59 // MediaPlayerAndroid implementation. |
59 virtual void SetVideoSurface(gfx::ScopedJavaSurface surface) OVERRIDE; | 60 virtual void SetVideoSurface(gfx::ScopedJavaSurface surface) OVERRIDE; |
60 virtual void Start() OVERRIDE; | 61 virtual void Start() OVERRIDE; |
61 virtual void Pause(bool is_media_related_action ALLOW_UNUSED) OVERRIDE; | 62 virtual void Pause(bool is_media_related_action ALLOW_UNUSED) OVERRIDE; |
62 virtual void SeekTo(base::TimeDelta timestamp) OVERRIDE; | 63 virtual void SeekTo(base::TimeDelta timestamp) OVERRIDE; |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 // Weak pointer passed to |listener_| for callbacks. | 183 // Weak pointer passed to |listener_| for callbacks. |
183 // NOTE: Weak pointers must be invalidated before all other member variables. | 184 // NOTE: Weak pointers must be invalidated before all other member variables. |
184 base::WeakPtrFactory<MediaPlayerBridge> weak_factory_; | 185 base::WeakPtrFactory<MediaPlayerBridge> weak_factory_; |
185 | 186 |
186 DISALLOW_COPY_AND_ASSIGN(MediaPlayerBridge); | 187 DISALLOW_COPY_AND_ASSIGN(MediaPlayerBridge); |
187 }; | 188 }; |
188 | 189 |
189 } // namespace media | 190 } // namespace media |
190 | 191 |
191 #endif // MEDIA_BASE_ANDROID_MEDIA_PLAYER_BRIDGE_H_ | 192 #endif // MEDIA_BASE_ANDROID_MEDIA_PLAYER_BRIDGE_H_ |
OLD | NEW |