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

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

Issue 2177743002: Migrate page_load_metrics out of components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: migrate page_load_metrics_messages to common message generator Created 4 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
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 "components/page_load_metrics/common/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"
11 11
12 #define IPC_MESSAGE_START PageLoadMetricsMsgStart 12 #define IPC_MESSAGE_START PageLoadMetricsMsgStart
13 13
14 // See comments in page_load_timing.h for details on each field. 14 // See comments in page_load_timing.h for details on each field.
15 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::PageLoadTiming) 15 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::PageLoadTiming)
16 IPC_STRUCT_TRAITS_MEMBER(navigation_start) 16 IPC_STRUCT_TRAITS_MEMBER(navigation_start)
17 IPC_STRUCT_TRAITS_MEMBER(response_start) 17 IPC_STRUCT_TRAITS_MEMBER(response_start)
18 IPC_STRUCT_TRAITS_MEMBER(dom_loading) 18 IPC_STRUCT_TRAITS_MEMBER(dom_loading)
19 IPC_STRUCT_TRAITS_MEMBER(dom_content_loaded_event_start) 19 IPC_STRUCT_TRAITS_MEMBER(dom_content_loaded_event_start)
(...skipping 12 matching lines...) Expand all
32 32
33 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::PageLoadMetadata) 33 IPC_STRUCT_TRAITS_BEGIN(page_load_metrics::PageLoadMetadata)
34 IPC_STRUCT_TRAITS_MEMBER(behavior_flags) 34 IPC_STRUCT_TRAITS_MEMBER(behavior_flags)
35 IPC_STRUCT_TRAITS_END() 35 IPC_STRUCT_TRAITS_END()
36 36
37 // Sent from renderer to browser process when the PageLoadTiming for the 37 // Sent from renderer to browser process when the PageLoadTiming for the
38 // associated frame changed. 38 // associated frame changed.
39 IPC_MESSAGE_ROUTED2(PageLoadMetricsMsg_TimingUpdated, 39 IPC_MESSAGE_ROUTED2(PageLoadMetricsMsg_TimingUpdated,
40 page_load_metrics::PageLoadTiming, 40 page_load_metrics::PageLoadTiming,
41 page_load_metrics::PageLoadMetadata) 41 page_load_metrics::PageLoadMetadata)
OLDNEW
« no previous file with comments | « chrome/common/page_load_metrics/OWNERS ('k') | chrome/common/page_load_metrics/page_load_timing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698