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

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

Issue 2272603003: Route key_exchange_group over to DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 4 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
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/public/common/resource_response_info.h » ('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 10
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time) 177 IPC_STRUCT_TRAITS_MEMBER(service_worker_start_time)
178 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time) 178 IPC_STRUCT_TRAITS_MEMBER(service_worker_ready_time)
179 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) 179 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage)
180 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name) 180 IPC_STRUCT_TRAITS_MEMBER(cache_storage_cache_name)
181 IPC_STRUCT_TRAITS_MEMBER(proxy_server) 181 IPC_STRUCT_TRAITS_MEMBER(proxy_server)
182 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi) 182 IPC_STRUCT_TRAITS_MEMBER(is_using_lofi)
183 IPC_STRUCT_TRAITS_MEMBER(effective_connection_type) 183 IPC_STRUCT_TRAITS_MEMBER(effective_connection_type)
184 IPC_STRUCT_TRAITS_MEMBER(certificate) 184 IPC_STRUCT_TRAITS_MEMBER(certificate)
185 IPC_STRUCT_TRAITS_MEMBER(cert_status) 185 IPC_STRUCT_TRAITS_MEMBER(cert_status)
186 IPC_STRUCT_TRAITS_MEMBER(ssl_connection_status) 186 IPC_STRUCT_TRAITS_MEMBER(ssl_connection_status)
187 IPC_STRUCT_TRAITS_MEMBER(ssl_key_exchange_group)
187 IPC_STRUCT_TRAITS_MEMBER(signed_certificate_timestamps) 188 IPC_STRUCT_TRAITS_MEMBER(signed_certificate_timestamps)
188 IPC_STRUCT_TRAITS_MEMBER(cors_exposed_header_names) 189 IPC_STRUCT_TRAITS_MEMBER(cors_exposed_header_names)
189 IPC_STRUCT_TRAITS_END() 190 IPC_STRUCT_TRAITS_END()
190 191
191 IPC_ENUM_TRAITS_MAX_VALUE(net::URLRequest::ReferrerPolicy, 192 IPC_ENUM_TRAITS_MAX_VALUE(net::URLRequest::ReferrerPolicy,
192 net::URLRequest::MAX_REFERRER_POLICY - 1) 193 net::URLRequest::MAX_REFERRER_POLICY - 1)
193 194
194 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo) 195 IPC_STRUCT_TRAITS_BEGIN(net::RedirectInfo)
195 IPC_STRUCT_TRAITS_MEMBER(status_code) 196 IPC_STRUCT_TRAITS_MEMBER(status_code)
196 IPC_STRUCT_TRAITS_MEMBER(new_method) 197 IPC_STRUCT_TRAITS_MEMBER(new_method)
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 377
377 // Sent when the renderer process deletes a resource loader. 378 // Sent when the renderer process deletes a resource loader.
378 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 379 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
379 int /* request_id */) 380 int /* request_id */)
380 381
381 // Sent by the renderer when a resource request changes priority. 382 // Sent by the renderer when a resource request changes priority.
382 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 383 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority,
383 int /* request_id */, 384 int /* request_id */,
384 net::RequestPriority, 385 net::RequestPriority,
385 int /* intra_priority_value */) 386 int /* intra_priority_value */)
OLDNEW
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698