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

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

Issue 7647003: Update routing id of pending resource requests for reparented iframes. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed Copyright that presubmit complains about. Created 9 years, 4 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
« no previous file with comments | « content/common/resource_dispatcher.cc ('k') | content/renderer/render_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/shared_memory.h" 8 #include "base/shared_memory.h"
9 #include "content/common/resource_response.h" 9 #include "content/common/resource_response.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 // Makes a resource request via the browser. 154 // Makes a resource request via the browser.
155 IPC_MESSAGE_ROUTED2(ResourceHostMsg_RequestResource, 155 IPC_MESSAGE_ROUTED2(ResourceHostMsg_RequestResource,
156 int /* request_id */, 156 int /* request_id */,
157 ResourceHostMsg_Request) 157 ResourceHostMsg_Request)
158 158
159 // Cancels a resource request with the ID given as the parameter. 159 // Cancels a resource request with the ID given as the parameter.
160 IPC_MESSAGE_ROUTED1(ResourceHostMsg_CancelRequest, 160 IPC_MESSAGE_ROUTED1(ResourceHostMsg_CancelRequest,
161 int /* request_id */) 161 int /* request_id */)
162 162
163 // Sets a new routing id for the resource request with the ID given as the
164 // parameter. This happens when a pending request is transferred to another
165 // page.
166 IPC_MESSAGE_CONTROL2(ResourceHostMsg_TransferRequestToNewPage,
167 int /* new routing_id */,
168 int /* request_id */)
169
163 // Follows a redirect that occured for the resource request with the ID given 170 // Follows a redirect that occured for the resource request with the ID given
164 // as the parameter. 171 // as the parameter.
165 IPC_MESSAGE_ROUTED3(ResourceHostMsg_FollowRedirect, 172 IPC_MESSAGE_ROUTED3(ResourceHostMsg_FollowRedirect,
166 int /* request_id */, 173 int /* request_id */,
167 bool /* has_new_first_party_for_cookies */, 174 bool /* has_new_first_party_for_cookies */,
168 GURL /* new_first_party_for_cookies */) 175 GURL /* new_first_party_for_cookies */)
169 176
170 // Makes a synchronous resource request via the browser. 177 // Makes a synchronous resource request via the browser.
171 IPC_SYNC_MESSAGE_ROUTED2_1(ResourceHostMsg_SyncLoad, 178 IPC_SYNC_MESSAGE_ROUTED2_1(ResourceHostMsg_SyncLoad,
172 int /* request_id */, 179 int /* request_id */,
(...skipping 10 matching lines...) Expand all
183 int /* request_id */) 190 int /* request_id */)
184 191
185 // Sent by the renderer process to acknowledge receipt of a 192 // Sent by the renderer process to acknowledge receipt of a
186 // UploadProgress message. 193 // UploadProgress message.
187 IPC_MESSAGE_ROUTED1(ResourceHostMsg_UploadProgress_ACK, 194 IPC_MESSAGE_ROUTED1(ResourceHostMsg_UploadProgress_ACK,
188 int /* request_id */) 195 int /* request_id */)
189 196
190 // Sent when the renderer process deletes a resource loader. 197 // Sent when the renderer process deletes a resource loader.
191 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 198 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
192 int /* request_id */) 199 int /* request_id */)
OLDNEW
« no previous file with comments | « content/common/resource_dispatcher.cc ('k') | content/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698