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

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: rebase 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerStart, 105 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerStart,
106 int /* player_id */) 106 int /* player_id */)
107 107
108 // Request the player to enter fullscreen. 108 // Request the player to enter fullscreen.
109 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen, 109 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen,
110 int /* player_id */) 110 int /* player_id */)
111 111
112 // Request the player to exit fullscreen. 112 // Request the player to exit fullscreen.
113 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_ExitFullscreen, 113 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_ExitFullscreen,
114 int /* player_id */) 114 int /* player_id */)
115
116 // Request the player to use external surface for rendering.
117 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_RequestExternalSurface,
118 int /* player_id */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698