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

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

Issue 2515383004: Revert of Send encoded_body_length to renderer when response completed (1/3) (Closed)
Patch Set: Created 4 years, 1 month 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 IPC_STRUCT_TRAITS_MEMBER(download_to_network_cache_only) 253 IPC_STRUCT_TRAITS_MEMBER(download_to_network_cache_only)
254 IPC_STRUCT_TRAITS_END() 254 IPC_STRUCT_TRAITS_END()
255 255
256 // Parameters for a ResourceMsg_RequestComplete 256 // Parameters for a ResourceMsg_RequestComplete
257 IPC_STRUCT_TRAITS_BEGIN(content::ResourceRequestCompletionStatus) 257 IPC_STRUCT_TRAITS_BEGIN(content::ResourceRequestCompletionStatus)
258 IPC_STRUCT_TRAITS_MEMBER(error_code) 258 IPC_STRUCT_TRAITS_MEMBER(error_code)
259 IPC_STRUCT_TRAITS_MEMBER(was_ignored_by_handler) 259 IPC_STRUCT_TRAITS_MEMBER(was_ignored_by_handler)
260 IPC_STRUCT_TRAITS_MEMBER(exists_in_cache) 260 IPC_STRUCT_TRAITS_MEMBER(exists_in_cache)
261 IPC_STRUCT_TRAITS_MEMBER(completion_time) 261 IPC_STRUCT_TRAITS_MEMBER(completion_time)
262 IPC_STRUCT_TRAITS_MEMBER(encoded_data_length) 262 IPC_STRUCT_TRAITS_MEMBER(encoded_data_length)
263 IPC_STRUCT_TRAITS_MEMBER(encoded_body_length)
264 IPC_STRUCT_TRAITS_END() 263 IPC_STRUCT_TRAITS_END()
265 264
266 // Resource messages sent from the browser to the renderer. 265 // Resource messages sent from the browser to the renderer.
267 266
268 // Sent when the headers are available for a resource request. 267 // Sent when the headers are available for a resource request.
269 IPC_MESSAGE_CONTROL2(ResourceMsg_ReceivedResponse, 268 IPC_MESSAGE_CONTROL2(ResourceMsg_ReceivedResponse,
270 int /* request_id */, 269 int /* request_id */,
271 content::ResourceResponseHead) 270 content::ResourceResponseHead)
272 271
273 // Sent when cached metadata from a resource request is ready. 272 // Sent when cached metadata from a resource request is ready.
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 372
374 // Sent when the renderer process deletes a resource loader. 373 // Sent when the renderer process deletes a resource loader.
375 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 374 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
376 int /* request_id */) 375 int /* request_id */)
377 376
378 // Sent by the renderer when a resource request changes priority. 377 // Sent by the renderer when a resource request changes priority.
379 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 378 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority,
380 int /* request_id */, 379 int /* request_id */,
381 net::RequestPriority, 380 net::RequestPriority,
382 int /* intra_priority_value */) 381 int /* intra_priority_value */)
OLDNEW
« no previous file with comments | « content/browser/loader/url_loader_factory_impl_unittest.cc ('k') | content/common/resource_request_completion_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698