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

Unified Diff: media/blink/webmediaplayer_cast_android.cc

Issue 2480003002: [RemotePlayback] Keep track of source compatibility and reject prompt() correspondingly (Closed)
Patch Set: Fixed the java enum comment 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/blink/webmediaplayer_cast_android.h ('k') | media/blink/webmediaplayer_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/blink/webmediaplayer_cast_android.cc
diff --git a/media/blink/webmediaplayer_cast_android.cc b/media/blink/webmediaplayer_cast_android.cc
index 22dcbb700e152d84b8b771fec3fa6c213d0bf2c2..c9e669379ff95533f3092c4402a470b628682a5a 100644
--- a/media/blink/webmediaplayer_cast_android.cc
+++ b/media/blink/webmediaplayer_cast_android.cc
@@ -332,9 +332,9 @@ void WebMediaPlayerCast::OnMediaPlayerPause() {
}
void WebMediaPlayerCast::OnRemoteRouteAvailabilityChanged(
- bool routes_available) {
+ blink::WebRemotePlaybackAvailability availability) {
DVLOG(1) << __FUNCTION__;
- client_->remoteRouteAvailabilityChanged(routes_available);
+ client_->remoteRouteAvailabilityChanged(availability);
}
void WebMediaPlayerCast::SuspendAndReleaseResources() {}
« no previous file with comments | « media/blink/webmediaplayer_cast_android.h ('k') | media/blink/webmediaplayer_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698