Index: content/browser/android/web_contents_observer_proxy.cc |
diff --git a/content/browser/android/web_contents_observer_proxy.cc b/content/browser/android/web_contents_observer_proxy.cc |
index adfa2aaaf4d67dd4c889f9621dfcdcecf5acd30f..e856d8e4ef79b382305bdb5041a4cf88aa5e0c9d 100644 |
--- a/content/browser/android/web_contents_observer_proxy.cc |
+++ b/content/browser/android/web_contents_observer_proxy.cc |
@@ -293,6 +293,10 @@ void WebContentsObserverProxy::MediaSessionStateChanged(bool is_controllable, |
ScopedJavaLocalRef<jobject> obj(java_observer_); |
+ // TODO(philipj): This is where we cross from content/ to chrome/, i.e. where |
+ // Chrome and Opera will have different UIs. Need to send all relevant |
+ // information here, i.e. the metadata for Blink-created media sessions, and |
+ // the tab title and other information for the default media session. |
mlamouri (slow - plz ping)
2015/08/24 12:55:24
tab title should be available from WebContents. I
whywhat
2015/08/24 14:39:18
It might make sense to send media session metadata
philipj_slow
2015/08/26 07:39:48
Right, when I wrote this comment, I was thinking t
|
Java_WebContentsObserverProxy_mediaSessionStateChanged( |
env, obj.obj(), is_controllable, is_suspended); |
} |