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

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

Issue 515753003: Add ServiceWorker timing information on the popup panel in DevTools's Network tab (2/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporate the reviews Created 6 years, 3 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 #include "base/memory/shared_memory.h" 10 #include "base/memory/shared_memory.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 IPC_STRUCT_TRAITS_MEMBER(download_file_path) 113 IPC_STRUCT_TRAITS_MEMBER(download_file_path)
114 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_spdy) 114 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_spdy)
115 IPC_STRUCT_TRAITS_MEMBER(was_npn_negotiated) 115 IPC_STRUCT_TRAITS_MEMBER(was_npn_negotiated)
116 IPC_STRUCT_TRAITS_MEMBER(was_alternate_protocol_available) 116 IPC_STRUCT_TRAITS_MEMBER(was_alternate_protocol_available)
117 IPC_STRUCT_TRAITS_MEMBER(connection_info) 117 IPC_STRUCT_TRAITS_MEMBER(connection_info)
118 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_proxy) 118 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_proxy)
119 IPC_STRUCT_TRAITS_MEMBER(npn_negotiated_protocol) 119 IPC_STRUCT_TRAITS_MEMBER(npn_negotiated_protocol)
120 IPC_STRUCT_TRAITS_MEMBER(socket_address) 120 IPC_STRUCT_TRAITS_MEMBER(socket_address)
121 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker) 121 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker)
122 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) 122 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker)
123 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_start)
124 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_ready)
125 IPC_STRUCT_TRAITS_MEMBER(service_worker_fetch_end)
123 IPC_STRUCT_TRAITS_END() 126 IPC_STRUCT_TRAITS_END()
124 127
125 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) 128 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo)
126 IPC_STRUCT_TRAITS_MEMBER(status_code) 129 IPC_STRUCT_TRAITS_MEMBER(status_code)
127 IPC_STRUCT_TRAITS_MEMBER(new_method) 130 IPC_STRUCT_TRAITS_MEMBER(new_method)
128 IPC_STRUCT_TRAITS_MEMBER(new_url) 131 IPC_STRUCT_TRAITS_MEMBER(new_url)
129 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) 132 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies)
130 IPC_STRUCT_TRAITS_MEMBER(new_referrer) 133 IPC_STRUCT_TRAITS_MEMBER(new_referrer)
131 IPC_STRUCT_TRAITS_END() 134 IPC_STRUCT_TRAITS_END()
132 135
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 355
353 // Sent when the renderer process deletes a resource loader. 356 // Sent when the renderer process deletes a resource loader.
354 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 357 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
355 int /* request_id */) 358 int /* request_id */)
356 359
357 // Sent by the renderer when a resource request changes priority. 360 // Sent by the renderer when a resource request changes priority.
358 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 361 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority,
359 int /* request_id */, 362 int /* request_id */,
360 net::RequestPriority, 363 net::RequestPriority,
361 int /* intra_priority_value */) 364 int /* intra_priority_value */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698