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

Side by Side Diff: content/common/resource_messages.h

Issue 1721813002: Adding DRP specfic UMA for FirstContentfulPaint (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created a DRP PageLoadMetricsObserver Created 4 years, 9 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 resource loading. 5 // IPC messages for resource loading.
6 // 6 //
7 // NOTE: All messages must send an |int request_id| as their first parameter. 7 // NOTE: All messages must send an |int request_id| as their first parameter.
8 8
9 // Multiply-included message file, hence no include guard. 9 // Multiply-included message file, hence no include guard.
10 10
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 IPC_STRUCT_TRAITS_MEMBER(npn_negotiated_protocol) 144 IPC_STRUCT_TRAITS_MEMBER(npn_negotiated_protocol)
145 IPC_STRUCT_TRAITS_MEMBER(socket_address) 145 IPC_STRUCT_TRAITS_MEMBER(socket_address)
146 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker) 146 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker)
147 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker) 147 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker)
148 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) 148 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker)
149 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) 149 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker)
150 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) 150 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time)
151 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time) 151 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time)
152 IPC_STRUCT_TRAITS_MEMBER(proxy_server) 152 IPC_STRUCT_TRAITS_MEMBER(proxy_server)
153 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi) 153 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi)
154 IPC_STRUCT_TRAITS_MEMBER(used_data_reduction_proxy)
154 IPC_STRUCT_TRAITS_END() 155 IPC_STRUCT_TRAITS_END()
155 156
156 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) 157 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo)
157 IPC_STRUCT_TRAITS_MEMBER(status_code) 158 IPC_STRUCT_TRAITS_MEMBER(status_code)
158 IPC_STRUCT_TRAITS_MEMBER(new_method) 159 IPC_STRUCT_TRAITS_MEMBER(new_method)
159 IPC_STRUCT_TRAITS_MEMBER(new_url) 160 IPC_STRUCT_TRAITS_MEMBER(new_url)
160 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) 161 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies)
161 IPC_STRUCT_TRAITS_MEMBER(new_referrer) 162 IPC_STRUCT_TRAITS_MEMBER(new_referrer)
162 IPC_STRUCT_TRAITS_END() 163 IPC_STRUCT_TRAITS_END()
163 164
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 450
450 // Sent when the renderer process deletes a resource loader. 451 // Sent when the renderer process deletes a resource loader.
451 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 452 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
452 int /* request_id */) 453 int /* request_id */)
453 454
454 // Sent by the renderer when a resource request changes priority. 455 // Sent by the renderer when a resource request changes priority.
455 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 456 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority,
456 int /* request_id */, 457 int /* request_id */,
457 net::RequestPriority, 458 net::RequestPriority,
458 int /* intra_priority_value */) 459 int /* intra_priority_value */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698