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

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

Issue 2252783004: Implement MediaSession (metadata) per frame [NOT READY, HAS DEPENDENCY] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor fixes Created 4 years, 3 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 the Media Session API. 5 // IPC messages for the Media Session API.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/optional.h" 8 #include "base/optional.h"
9 #include "content/common/android/gin_java_bridge_errors.h" 9 #include "content/common/android/gin_java_bridge_errors.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/public/common/media_metadata.h" 11 #include "content/public/common/media_metadata.h"
12 #include "ipc/ipc_message_macros.h" 12 #include "ipc/ipc_message_macros.h"
13 #include "ipc/ipc_message_utils.h"
13 14
14 #undef IPC_MESSAGE_EXPORT 15 #undef IPC_MESSAGE_EXPORT
15 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 16 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
16 #define IPC_MESSAGE_START MediaSessionMsgStart 17 #define IPC_MESSAGE_START MediaSessionMsgStart
17 18
18 IPC_STRUCT_TRAITS_BEGIN(content::MediaMetadata) 19 IPC_STRUCT_TRAITS_BEGIN(content::MediaMetadata)
19 IPC_STRUCT_TRAITS_MEMBER(title) 20 IPC_STRUCT_TRAITS_MEMBER(title)
20 IPC_STRUCT_TRAITS_MEMBER(artist) 21 IPC_STRUCT_TRAITS_MEMBER(artist)
21 IPC_STRUCT_TRAITS_MEMBER(album) 22 IPC_STRUCT_TRAITS_MEMBER(album)
22 IPC_STRUCT_TRAITS_MEMBER(artwork) 23 IPC_STRUCT_TRAITS_MEMBER(artwork)
(...skipping 13 matching lines...) Expand all
36 int /* session_id */, 37 int /* session_id */,
37 int /* request_id */) 38 int /* request_id */)
38 39
39 IPC_MESSAGE_ROUTED2(MediaSessionHostMsg_Deactivate, 40 IPC_MESSAGE_ROUTED2(MediaSessionHostMsg_Deactivate,
40 int /* session_id */, 41 int /* session_id */,
41 int /* request_id */) 42 int /* request_id */)
42 43
43 IPC_MESSAGE_ROUTED2(MediaSessionHostMsg_SetMetadata, 44 IPC_MESSAGE_ROUTED2(MediaSessionHostMsg_SetMetadata,
44 int /* request_id*/, 45 int /* request_id*/,
45 base::Optional<content::MediaMetadata> /* metadata */) 46 base::Optional<content::MediaMetadata> /* metadata */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698