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

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

Issue 8820012: Include the referrer header everywhere instead of directly including the webkit header (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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) 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/public/common/common_param_traits.h" 9 #include "content/public/common/common_param_traits.h"
10 #include "content/public/common/resource_response.h" 10 #include "content/public/common/resource_response.h"
11 #include "ipc/ipc_message_macros.h" 11 #include "ipc/ipc_message_macros.h"
12 #include "net/base/upload_data.h" 12 #include "net/base/upload_data.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebReferrerPolicy.h"
14 13
15 #define IPC_MESSAGE_START ResourceMsgStart 14 #define IPC_MESSAGE_START ResourceMsgStart
16 #undef IPC_MESSAGE_EXPORT 15 #undef IPC_MESSAGE_EXPORT
17 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 16 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
18 17
19 IPC_STRUCT_TRAITS_BEGIN(content::ResourceResponseHead) 18 IPC_STRUCT_TRAITS_BEGIN(content::ResourceResponseHead)
20 IPC_STRUCT_TRAITS_PARENT(webkit_glue::ResourceResponseInfo) 19 IPC_STRUCT_TRAITS_PARENT(webkit_glue::ResourceResponseInfo)
21 IPC_STRUCT_TRAITS_MEMBER(status) 20 IPC_STRUCT_TRAITS_MEMBER(status)
22 IPC_STRUCT_TRAITS_END() 21 IPC_STRUCT_TRAITS_END()
23 22
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 int /* request_id */) 212 int /* request_id */)
214 213
215 // Sent by the renderer process to acknowledge receipt of a 214 // Sent by the renderer process to acknowledge receipt of a
216 // UploadProgress message. 215 // UploadProgress message.
217 IPC_MESSAGE_ROUTED1(ResourceHostMsg_UploadProgress_ACK, 216 IPC_MESSAGE_ROUTED1(ResourceHostMsg_UploadProgress_ACK,
218 int /* request_id */) 217 int /* request_id */)
219 218
220 // Sent when the renderer process deletes a resource loader. 219 // Sent when the renderer process deletes a resource loader.
221 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 220 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
222 int /* request_id */) 221 int /* request_id */)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/resource_dispatcher_host_request_info.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698