| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // IPC messages for page load metrics. | |
| 6 // Multiply-included message file, hence no include guard. | |
| 7 | |
| 8 #include "base/time/time.h" | |
| 9 #include "chrome/common/page_load_metrics/page_load_metrics_param_traits.h" | |
| 10 #include "chrome/common/page_load_metrics/page_load_timing.h" | |
| 11 #include "ipc/ipc_message_macros.h" | |
| 12 | |
| 13 #define IPC_MESSAGE_START PageLoadMetricsMsgStart | |
| 14 | |
| 15 // See comments in page_load_timing.h for details on each field. | |
| 16 | |
| 17 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::mojom::DocumentTiming) | |
| 18 IPC_STRUCT_TRAITS_MEMBER(dom_content_loaded_event_start) | |
| 19 IPC_STRUCT_TRAITS_MEMBER(load_event_start) | |
| 20 IPC_STRUCT_TRAITS_MEMBER(first_layout) | |
| 21 IPC_STRUCT_TRAITS_END() | |
| 22 | |
| 23 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::mojom::PaintTiming) | |
| 24 IPC_STRUCT_TRAITS_MEMBER(first_paint) | |
| 25 IPC_STRUCT_TRAITS_MEMBER(first_text_paint) | |
| 26 IPC_STRUCT_TRAITS_MEMBER(first_image_paint) | |
| 27 IPC_STRUCT_TRAITS_MEMBER(first_contentful_paint) | |
| 28 IPC_STRUCT_TRAITS_MEMBER(first_meaningful_paint) | |
| 29 IPC_STRUCT_TRAITS_END() | |
| 30 | |
| 31 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::mojom::ParseTiming) | |
| 32 IPC_STRUCT_TRAITS_MEMBER(parse_start) | |
| 33 IPC_STRUCT_TRAITS_MEMBER(parse_stop) | |
| 34 IPC_STRUCT_TRAITS_MEMBER(parse_blocked_on_script_load_duration) | |
| 35 IPC_STRUCT_TRAITS_MEMBER( | |
| 36 parse_blocked_on_script_load_from_document_write_duration) | |
| 37 IPC_STRUCT_TRAITS_MEMBER(parse_blocked_on_script_execution_duration) | |
| 38 IPC_STRUCT_TRAITS_MEMBER( | |
| 39 parse_blocked_on_script_execution_from_document_write_duration) | |
| 40 IPC_STRUCT_TRAITS_END() | |
| 41 | |
| 42 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::mojom::StyleSheetTiming) | |
| 43 IPC_STRUCT_TRAITS_MEMBER(author_style_sheet_parse_duration_before_fcp) | |
| 44 IPC_STRUCT_TRAITS_MEMBER(update_style_duration_before_fcp) | |
| 45 IPC_STRUCT_TRAITS_END() | |
| 46 | |
| 47 // page_load_metrics::mojom::PageLoadTiming has custom ParamTraits. | |
| 48 | |
| 49 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::mojom::PageLoadMetadata) | |
| 50 IPC_STRUCT_TRAITS_MEMBER(behavior_flags) | |
| 51 IPC_STRUCT_TRAITS_END() | |
| 52 | |
| 53 // Sent from renderer to browser process when the PageLoadTiming for the | |
| 54 // associated frame changed. | |
| 55 IPC_MESSAGE_ROUTED2(PageLoadMetricsMsg_TimingUpdated, | |
| 56 page_load_metrics::mojom::PageLoadTiming, | |
| 57 page_load_metrics::mojom::PageLoadMetadata) | |
| OLD | NEW |