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

Unified Diff: content/renderer/media/android/webmediaplayer_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
Index: content/renderer/media/android/webmediaplayer_android.cc
diff --git a/content/renderer/media/android/webmediaplayer_android.cc b/content/renderer/media/android/webmediaplayer_android.cc
index 0a160a3a102d922329c0241a152941bd2e7d56c5..518a138d6a73bdcd90be7a9b93181e4b16c6ebe9 100644
--- a/content/renderer/media/android/webmediaplayer_android.cc
+++ b/content/renderer/media/android/webmediaplayer_android.cc
@@ -918,8 +918,8 @@ void WebMediaPlayerAndroid::OnMediaPlayerPause() {
}
void WebMediaPlayerAndroid::OnRemoteRouteAvailabilityChanged(
- bool routes_available) {
- client_->remoteRouteAvailabilityChanged(routes_available);
+ blink::WebRemotePlaybackAvailability availability) {
+ client_->remoteRouteAvailabilityChanged(availability);
}
void WebMediaPlayerAndroid::UpdateNetworkState(
« no previous file with comments | « content/renderer/media/android/webmediaplayer_android.h ('k') | content/renderer/media/webmediaplayer_ms_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698