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

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

Issue 7480032: Plumb media data from renderers up to MediaInternals in the browser process. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Much cleanup and making MediaLog thread safe. Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/values.h"
6 #include "ipc/ipc_message_macros.h"
7 #include "media/base/media_log.h"
8
9 #define IPC_MESSAGE_START MediaLogMsgStart
10
11 IPC_ENUM_TRAITS(media::MediaLog::EventType)
12
13 IPC_STRUCT_TRAITS_BEGIN(media::MediaLog::Event)
14 IPC_STRUCT_TRAITS_MEMBER(renderer)
15 IPC_STRUCT_TRAITS_MEMBER(id)
16 IPC_STRUCT_TRAITS_MEMBER(type)
17 IPC_STRUCT_TRAITS_MEMBER(params)
18 IPC_STRUCT_TRAITS_MEMBER(time)
19 IPC_STRUCT_TRAITS_END()
20
21 IPC_MESSAGE_CONTROL1(MediaLogMsg_MediaEvent,
22 media::MediaLog::Event /* event */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698