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

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

Issue 2380743004: media: Remove Browser CDM implementation (Closed)
Patch Set: media: Remove Browser CDM implementation Created 4 years, 2 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 "base/time/time.h" 8 #include "base/time/time.h"
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 // Requests the player to enter fullscreen. 169 // Requests the player to enter fullscreen.
170 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen, int /* player_id */) 170 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen, int /* player_id */)
171 171
172 // Play the media on a remote device, if possible. 172 // Play the media on a remote device, if possible.
173 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_RequestRemotePlayback, 173 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_RequestRemotePlayback,
174 int /* player_id */) 174 int /* player_id */)
175 175
176 // Control media playing on a remote device. 176 // Control media playing on a remote device.
177 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_RequestRemotePlaybackControl, 177 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_RequestRemotePlaybackControl,
178 int /* player_id */) 178 int /* player_id */)
179
180 // Requests the player with |player_id| to use the CDM with |cdm_id|.
181 IPC_MESSAGE_ROUTED2(MediaPlayerHostMsg_SetCdm,
182 int /* player_id */,
183 int /* cdm_id */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698