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

Unified Diff: content/renderer/media/webmediaplayer_proxy_impl_android.h

Issue 13688004: Location/size change notification when external rendering is enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase & added a missing ifdef guard Created 7 years, 8 months 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/webmediaplayer_proxy_impl_android.h
diff --git a/content/renderer/media/webmediaplayer_proxy_impl_android.h b/content/renderer/media/webmediaplayer_proxy_impl_android.h
index 0aeb583c452459293645239a4a68026af1f26450..2175b3dd3158eaaa431a473a030c0e173f1e78ae 100644
--- a/content/renderer/media/webmediaplayer_proxy_impl_android.h
+++ b/content/renderer/media/webmediaplayer_proxy_impl_android.h
@@ -44,8 +44,13 @@ class WebMediaPlayerProxyImplAndroid
virtual void DestroyPlayer(int player_id) OVERRIDE;
virtual void EnterFullscreen(int player_id) OVERRIDE;
virtual void ExitFullscreen(int player_id) OVERRIDE;
+#if defined(GOOGLE_TV)
virtual void RequestExternalSurface(int player_id) OVERRIDE;
+ // Methods inherited from RenderViewObserver.
+ virtual void DidCommitCompositorFrame() OVERRIDE;
+#endif
+
private:
webkit_media::WebMediaPlayerImplAndroid* GetWebMediaPlayer(int player_id);

Powered by Google App Engine
This is Rietveld 408576698