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

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

Issue 12243002: Pass WebKit priority changes and parsing messages up to the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
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 // Multiply-included message file, hence no include guard. 7 // Multiply-included message file, hence no include guard.
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_param_traits_macros.h" 10 #include "content/common/content_param_traits_macros.h"
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 int /* request_id */) 291 int /* request_id */)
292 292
293 // Sent by the renderer process to acknowledge receipt of a 293 // Sent by the renderer process to acknowledge receipt of a
294 // UploadProgress message. 294 // UploadProgress message.
295 IPC_MESSAGE_ROUTED1(ResourceHostMsg_UploadProgress_ACK, 295 IPC_MESSAGE_ROUTED1(ResourceHostMsg_UploadProgress_ACK,
296 int /* request_id */) 296 int /* request_id */)
297 297
298 // Sent when the renderer process deletes a resource loader. 298 // Sent when the renderer process deletes a resource loader.
299 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 299 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
300 int /* request_id */) 300 int /* request_id */)
301
302 // Sent by the renderer when a resource request changes priority.
303 IPC_MESSAGE_ROUTED2(ResourceHostMsg_DidChangePriority,
304 int /* request_id */,
305 WebKit::WebURLRequest::Priority)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698