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

Side by Side Diff: chrome/common/page_load_metrics/page_load_metrics_messages.h

Issue 2468913002: Add CSSTiming to collect aggregate PLT-level stats about CSS. (Closed)
Patch Set: minor comment/naming changes Created 4 years, 1 month 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 page load metrics. 5 // IPC messages for page load metrics.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/time/time.h" 8 #include "base/time/time.h"
9 #include "chrome/common/page_load_metrics/page_load_timing.h" 9 #include "chrome/common/page_load_metrics/page_load_timing.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
(...skipping 13 matching lines...) Expand all
24 IPC_STRUCT_TRAITS_MEMBER(first_contentful_paint) 24 IPC_STRUCT_TRAITS_MEMBER(first_contentful_paint)
25 IPC_STRUCT_TRAITS_MEMBER(first_meaningful_paint) 25 IPC_STRUCT_TRAITS_MEMBER(first_meaningful_paint)
26 IPC_STRUCT_TRAITS_MEMBER(parse_start) 26 IPC_STRUCT_TRAITS_MEMBER(parse_start)
27 IPC_STRUCT_TRAITS_MEMBER(parse_stop) 27 IPC_STRUCT_TRAITS_MEMBER(parse_stop)
28 IPC_STRUCT_TRAITS_MEMBER(parse_blocked_on_script_load_duration) 28 IPC_STRUCT_TRAITS_MEMBER(parse_blocked_on_script_load_duration)
29 IPC_STRUCT_TRAITS_MEMBER( 29 IPC_STRUCT_TRAITS_MEMBER(
30 parse_blocked_on_script_load_from_document_write_duration) 30 parse_blocked_on_script_load_from_document_write_duration)
31 IPC_STRUCT_TRAITS_MEMBER(parse_blocked_on_script_execution_duration) 31 IPC_STRUCT_TRAITS_MEMBER(parse_blocked_on_script_execution_duration)
32 IPC_STRUCT_TRAITS_MEMBER( 32 IPC_STRUCT_TRAITS_MEMBER(
33 parse_blocked_on_script_execution_from_document_write_duration) 33 parse_blocked_on_script_execution_from_document_write_duration)
34 IPC_STRUCT_TRAITS_MEMBER(author_style_sheet_parse_duration_before_fcp)
34 IPC_STRUCT_TRAITS_END() 35 IPC_STRUCT_TRAITS_END()
35 36
36 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::PageLoadMetadata) 37 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::PageLoadMetadata)
37 IPC_STRUCT_TRAITS_MEMBER(behavior_flags) 38 IPC_STRUCT_TRAITS_MEMBER(behavior_flags)
38 IPC_STRUCT_TRAITS_END() 39 IPC_STRUCT_TRAITS_END()
39 40
40 // Sent from renderer to browser process when the PageLoadTiming for the 41 // Sent from renderer to browser process when the PageLoadTiming for the
41 // associated frame changed. 42 // associated frame changed.
42 IPC_MESSAGE_ROUTED2(PageLoadMetricsMsg_TimingUpdated, 43 IPC_MESSAGE_ROUTED2(PageLoadMetricsMsg_TimingUpdated,
43 page_load_metrics::PageLoadTiming, 44 page_load_metrics::PageLoadTiming,
44 page_load_metrics::PageLoadMetadata) 45 page_load_metrics::PageLoadMetadata)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698