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

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

Issue 1146253004: Add workerReady timing for ServiceWorker controlled requests [2/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/public/common/resource_response.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 IPC_STRUCT_TRAITS_MEMBER(was_alternate_protocol_available) 123 IPC_STRUCT_TRAITS_MEMBER(was_alternate_protocol_available)
124 IPC_STRUCT_TRAITS_MEMBER(connection_info) 124 IPC_STRUCT_TRAITS_MEMBER(connection_info)
125 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_proxy) 125 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_proxy)
126 IPC_STRUCT_TRAITS_MEMBER(npn_negotiated_protocol) 126 IPC_STRUCT_TRAITS_MEMBER(npn_negotiated_protocol)
127 IPC_STRUCT_TRAITS_MEMBER(socket_address) 127 IPC_STRUCT_TRAITS_MEMBER(socket_address)
128 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker) 128 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_service_worker)
129 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker) 129 IPC_STRUCT_TRAITS_MEMBER(was_fallback_required_by_service_worker)
130 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker) 130 IPC_STRUCT_TRAITS_MEMBER(original_url_via_service_worker)
131 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker) 131 IPC_STRUCT_TRAITS_MEMBER(response_type_via_service_worker)
132 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) 132 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time)
133 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time)
133 IPC_STRUCT_TRAITS_MEMBER(proxy_server) 134 IPC_STRUCT_TRAITS_MEMBER(proxy_server)
134 IPC_STRUCT_TRAITS_END() 135 IPC_STRUCT_TRAITS_END()
135 136
136 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) 137 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo)
137 IPC_STRUCT_TRAITS_MEMBER(status_code) 138 IPC_STRUCT_TRAITS_MEMBER(status_code)
138 IPC_STRUCT_TRAITS_MEMBER(new_method) 139 IPC_STRUCT_TRAITS_MEMBER(new_method)
139 IPC_STRUCT_TRAITS_MEMBER(new_url) 140 IPC_STRUCT_TRAITS_MEMBER(new_url)
140 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies) 141 IPC_STRUCT_TRAITS_MEMBER(new_first_party_for_cookies)
141 IPC_STRUCT_TRAITS_MEMBER(new_referrer) 142 IPC_STRUCT_TRAITS_MEMBER(new_referrer)
142 IPC_STRUCT_TRAITS_END() 143 IPC_STRUCT_TRAITS_END()
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 388
388 // Sent when the renderer process deletes a resource loader. 389 // Sent when the renderer process deletes a resource loader.
389 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 390 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
390 int /* request_id */) 391 int /* request_id */)
391 392
392 // Sent by the renderer when a resource request changes priority. 393 // Sent by the renderer when a resource request changes priority.
393 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 394 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority,
394 int /* request_id */, 395 int /* request_id */,
395 net::RequestPriority, 396 net::RequestPriority,
396 int /* intra_priority_value */) 397 int /* intra_priority_value */)
OLDNEW
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/public/common/resource_response.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698