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

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

Issue 2941883003: [ServiceWorker] Fetch event should return integrity value (Closed)
Patch Set: Address yhirano's comment #78 Created 3 years, 5 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 IPC_STRUCT_TRAITS_MEMBER(priority) 263 IPC_STRUCT_TRAITS_MEMBER(priority)
264 IPC_STRUCT_TRAITS_MEMBER(request_context) 264 IPC_STRUCT_TRAITS_MEMBER(request_context)
265 IPC_STRUCT_TRAITS_MEMBER(appcache_host_id) 265 IPC_STRUCT_TRAITS_MEMBER(appcache_host_id)
266 IPC_STRUCT_TRAITS_MEMBER(should_reset_appcache) 266 IPC_STRUCT_TRAITS_MEMBER(should_reset_appcache)
267 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id) 267 IPC_STRUCT_TRAITS_MEMBER(service_worker_provider_id)
268 IPC_STRUCT_TRAITS_MEMBER(originated_from_service_worker) 268 IPC_STRUCT_TRAITS_MEMBER(originated_from_service_worker)
269 IPC_STRUCT_TRAITS_MEMBER(service_worker_mode) 269 IPC_STRUCT_TRAITS_MEMBER(service_worker_mode)
270 IPC_STRUCT_TRAITS_MEMBER(fetch_request_mode) 270 IPC_STRUCT_TRAITS_MEMBER(fetch_request_mode)
271 IPC_STRUCT_TRAITS_MEMBER(fetch_credentials_mode) 271 IPC_STRUCT_TRAITS_MEMBER(fetch_credentials_mode)
272 IPC_STRUCT_TRAITS_MEMBER(fetch_redirect_mode) 272 IPC_STRUCT_TRAITS_MEMBER(fetch_redirect_mode)
273 IPC_STRUCT_TRAITS_MEMBER(fetch_integrity)
273 IPC_STRUCT_TRAITS_MEMBER(fetch_request_context_type) 274 IPC_STRUCT_TRAITS_MEMBER(fetch_request_context_type)
274 IPC_STRUCT_TRAITS_MEMBER(fetch_mixed_content_context_type) 275 IPC_STRUCT_TRAITS_MEMBER(fetch_mixed_content_context_type)
275 IPC_STRUCT_TRAITS_MEMBER(fetch_frame_type) 276 IPC_STRUCT_TRAITS_MEMBER(fetch_frame_type)
276 IPC_STRUCT_TRAITS_MEMBER(request_body) 277 IPC_STRUCT_TRAITS_MEMBER(request_body)
277 IPC_STRUCT_TRAITS_MEMBER(download_to_file) 278 IPC_STRUCT_TRAITS_MEMBER(download_to_file)
278 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) 279 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
279 IPC_STRUCT_TRAITS_MEMBER(enable_load_timing) 280 IPC_STRUCT_TRAITS_MEMBER(enable_load_timing)
280 IPC_STRUCT_TRAITS_MEMBER(enable_upload_progress) 281 IPC_STRUCT_TRAITS_MEMBER(enable_upload_progress)
281 IPC_STRUCT_TRAITS_MEMBER(do_not_prompt_for_login) 282 IPC_STRUCT_TRAITS_MEMBER(do_not_prompt_for_login)
282 IPC_STRUCT_TRAITS_MEMBER(render_frame_id) 283 IPC_STRUCT_TRAITS_MEMBER(render_frame_id)
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 409
409 // Sent when the renderer process deletes a resource loader. 410 // Sent when the renderer process deletes a resource loader.
410 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 411 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
411 int /* request_id */) 412 int /* request_id */)
412 413
413 // Sent by the renderer when a resource request changes priority. 414 // Sent by the renderer when a resource request changes priority.
414 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 415 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority,
415 int /* request_id */, 416 int /* request_id */,
416 net::RequestPriority, 417 net::RequestPriority,
417 int /* intra_priority_value */) 418 int /* intra_priority_value */)
OLDNEW
« no previous file with comments | « content/child/web_url_request_util.cc ('k') | content/common/service_worker/service_worker_fetch_request_struct_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698