OLD | NEW |
(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 */) |
OLD | NEW |