OLD | NEW |
---|---|
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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
319 IPC_MESSAGE_CONTROL1(ResourceHostMsg_UploadProgress_ACK, | 319 IPC_MESSAGE_CONTROL1(ResourceHostMsg_UploadProgress_ACK, |
320 int /* request_id */) | 320 int /* request_id */) |
321 | 321 |
322 // Sent when the renderer process deletes a resource loader. | 322 // Sent when the renderer process deletes a resource loader. |
323 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, | 323 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, |
324 int /* request_id */) | 324 int /* request_id */) |
325 | 325 |
326 // Sent by the renderer when a resource request changes priority. | 326 // Sent by the renderer when a resource request changes priority. |
327 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, | 327 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, |
328 int /* request_id */, | 328 int /* request_id */, |
329 net::RequestPriority, | 329 net::RequestPriority, |
darin (slow to review)
2014/02/28 05:14:12
it is confusing to have two priority fields. this
| |
330 int) | 330 int /* intra_priority_value */) |
OLD | NEW |