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

Side by Side Diff: content/common/media/media_player_messages.h

Issue 12443003: Implement out-of-band video compositing on Android: Step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for android media player. 5 // IPC messages for android media player.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/time.h" 10 #include "base/time.h"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerStart, 104 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerStart,
105 int /* player_id */) 105 int /* player_id */)
106 106
107 // Request the player to enter fullscreen. 107 // Request the player to enter fullscreen.
108 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen, 108 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen,
109 int /* player_id */) 109 int /* player_id */)
110 110
111 // Request the player to exit fullscreen. 111 // Request the player to exit fullscreen.
112 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_ExitFullscreen, 112 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_ExitFullscreen,
113 int /* player_id */) 113 int /* player_id */)
114
115 // Request the player to use external surface for rendering.
116 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_RequestExternalSurface,
117 int /* player_id */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698