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

Unified Diff: content/common/media/media_player_messages_android.h

Issue 302453012: Support casting for embedded YT videos (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comments Created 6 years, 7 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/common/media/media_player_messages_android.h
diff --git a/content/common/media/media_player_messages_android.h b/content/common/media/media_player_messages_android.h
index 12fdcf19cfc8973c7adce866dcc460e9837b89c7..a10051c5ae5a606f93fb8ec25f18c206ebea9144 100644
--- a/content/common/media/media_player_messages_android.h
+++ b/content/common/media/media_player_messages_android.h
@@ -213,7 +213,13 @@ IPC_MESSAGE_ROUTED5(
int /* player_id */,
GURL /* url */,
GURL /* first_party_for_cookies */,
- int /* demuxer_client_id */)
+ int /* demuxer_client_id */);
+
+// Sets the URL of the frame containing the video with the given player_id
+IPC_MESSAGE_ROUTED2(
+ MediaPlayerHostMsg_SetFrameUrl,
+ int /* player_id */,
+ GURL /* frame_source_url */);
aberent 2014/05/28 17:32:31 I don't like adding this message just to get round
May 2014/06/04 14:05:08 Done.
// Pause the player.
IPC_MESSAGE_ROUTED2(MediaPlayerHostMsg_Pause,

Powered by Google App Engine
This is Rietveld 408576698