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

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

Issue 220553002: Revert of Introduce an intra-priority level sorting value - Chromium Side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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 #include "base/memory/shared_memory.h" 10 #include "base/memory/shared_memory.h"
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 // Sent by the renderer process to acknowledge receipt of a 335 // Sent by the renderer process to acknowledge receipt of a
336 // UploadProgress message. 336 // UploadProgress message.
337 IPC_MESSAGE_CONTROL1(ResourceHostMsg_UploadProgress_ACK, 337 IPC_MESSAGE_CONTROL1(ResourceHostMsg_UploadProgress_ACK,
338 int /* request_id */) 338 int /* request_id */)
339 339
340 // Sent when the renderer process deletes a resource loader. 340 // Sent when the renderer process deletes a resource loader.
341 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 341 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
342 int /* request_id */) 342 int /* request_id */)
343 343
344 // Sent by the renderer when a resource request changes priority. 344 // Sent by the renderer when a resource request changes priority.
345 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 345 IPC_MESSAGE_CONTROL2(ResourceHostMsg_DidChangePriority,
346 int /* request_id */, 346 int /* request_id */,
347 net::RequestPriority, 347 net::RequestPriority)
348 int /* intra_priority_value */)
OLDNEW
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/shell/renderer/test_runner/WebFrameTestProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698