Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: media/blink/webmediaplayer_cast_android.h

Issue 2464163004: [RemotePlayback] Implement 'connecting' state (Closed)
Patch Set: Fixed mocks Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698