OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2014 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 // No include guard. This file is intended to be reused in |
| 6 // "content/common/content_param_traits_macros.h" and |
| 7 // "ppapi/proxy/ppapi_messages.h" |
| 8 |
| 9 IPC_ENUM_TRAITS_MAX_VALUE(ui::LatencyComponentType, |
| 10 ui::LATENCY_COMPONENT_TYPE_LAST) |
| 11 |
| 12 IPC_STRUCT_TRAITS_BEGIN(ui::LatencyInfo::LatencyComponent) |
| 13 IPC_STRUCT_TRAITS_MEMBER(sequence_number) |
| 14 IPC_STRUCT_TRAITS_MEMBER(event_time) |
| 15 IPC_STRUCT_TRAITS_MEMBER(event_count) |
| 16 IPC_STRUCT_TRAITS_END() |
| 17 |
| 18 IPC_STRUCT_TRAITS_BEGIN(ui::LatencyInfo) |
| 19 IPC_STRUCT_TRAITS_MEMBER(latency_components) |
| 20 IPC_STRUCT_TRAITS_MEMBER(trace_id) |
| 21 IPC_STRUCT_TRAITS_MEMBER(terminated) |
| 22 IPC_STRUCT_TRAITS_END() |
OLD | NEW |