| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // Delete this file when WMPI_CAST is no longer needed. | 5 // Delete this file when WMPI_CAST is no longer needed. |
| 6 | 6 |
| 7 #ifndef MEDIA_BLINK_WEBMEDIAPLAYER_CAST_ANDROID_H_ | 7 #ifndef MEDIA_BLINK_WEBMEDIAPLAYER_CAST_ANDROID_H_ |
| 8 #define MEDIA_BLINK_WEBMEDIAPLAYER_CAST_ANDROID_H_ | 8 #define MEDIA_BLINK_WEBMEDIAPLAYER_CAST_ANDROID_H_ |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 base::TimeTicks current_time_ticks) override; | 68 base::TimeTicks current_time_ticks) override; |
| 69 | 69 |
| 70 // void OnWaitingForDecryptionKey() override; | 70 // void OnWaitingForDecryptionKey() override; |
| 71 void OnPlayerReleased() override; | 71 void OnPlayerReleased() override; |
| 72 | 72 |
| 73 // Functions called when media player status changes. | 73 // Functions called when media player status changes. |
| 74 void OnConnectedToRemoteDevice( | 74 void OnConnectedToRemoteDevice( |
| 75 const std::string& remote_playback_message) override; | 75 const std::string& remote_playback_message) override; |
| 76 void OnDisconnectedFromRemoteDevice() override; | 76 void OnDisconnectedFromRemoteDevice() override; |
| 77 void OnCancelledRemotePlaybackRequest() override; | 77 void OnCancelledRemotePlaybackRequest() override; |
| 78 void OnRemotePlaybackStarted() override; |
| 78 void OnDidExitFullscreen() override; | 79 void OnDidExitFullscreen() override; |
| 79 void OnMediaPlayerPlay() override; | 80 void OnMediaPlayerPlay() override; |
| 80 void OnMediaPlayerPause() override; | 81 void OnMediaPlayerPause() override; |
| 81 void OnRemoteRouteAvailabilityChanged(bool routes_available) override; | 82 void OnRemoteRouteAvailabilityChanged(bool routes_available) override; |
| 82 | 83 |
| 83 // Getters of playback state. | 84 // Getters of playback state. |
| 84 // bool paused() const override; | 85 // bool paused() const override; |
| 85 | 86 |
| 86 // True if the loaded media has a playable video track. | 87 // True if the loaded media has a playable video track. |
| 87 // bool hasVideo() const override; | 88 // bool hasVideo() const override; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 // Make a texture-backed video of the given size containing the given message. | 136 // Make a texture-backed video of the given size containing the given message. |
| 136 MEDIA_BLINK_EXPORT scoped_refptr<VideoFrame> MakeTextFrameForCast( | 137 MEDIA_BLINK_EXPORT scoped_refptr<VideoFrame> MakeTextFrameForCast( |
| 137 const std::string& remote_playback_message, | 138 const std::string& remote_playback_message, |
| 138 gfx::Size canvas_size, | 139 gfx::Size canvas_size, |
| 139 gfx::Size natural_size, | 140 gfx::Size natural_size, |
| 140 const base::Callback<gpu::gles2::GLES2Interface*()>& context_3d_cb); | 141 const base::Callback<gpu::gles2::GLES2Interface*()>& context_3d_cb); |
| 141 | 142 |
| 142 } // namespace media | 143 } // namespace media |
| 143 | 144 |
| 144 #endif // MEDIA_BLINK_WEBMEDIAPLAYER_CAST_ANDROID_H_ | 145 #endif // MEDIA_BLINK_WEBMEDIAPLAYER_CAST_ANDROID_H_ |
| OLD | NEW |