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

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

Issue 8368004: Move common_param_traits and webkit_param_traits to content/public/common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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/view_messages.h ('k') | content/common/webkit_param_traits.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 HTML5 Blob. 5 // IPC messages for HTML5 Blob.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "content/common/common_param_traits.h" 8 #include "content/public/common/common_param_traits.h"
9 #include "content/common/webkit_param_traits.h" 9 #include "content/public/common/webkit_param_traits.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
11 11
12 #define IPC_MESSAGE_START BlobMsgStart 12 #define IPC_MESSAGE_START BlobMsgStart
13 13
14 IPC_ENUM_TRAITS(webkit_blob::BlobData::Type) 14 IPC_ENUM_TRAITS(webkit_blob::BlobData::Type)
15 15
16 IPC_STRUCT_TRAITS_BEGIN(webkit_blob::BlobData::Item) 16 IPC_STRUCT_TRAITS_BEGIN(webkit_blob::BlobData::Item)
17 IPC_STRUCT_TRAITS_MEMBER(type) 17 IPC_STRUCT_TRAITS_MEMBER(type)
18 IPC_STRUCT_TRAITS_MEMBER(data) 18 IPC_STRUCT_TRAITS_MEMBER(data)
19 IPC_STRUCT_TRAITS_MEMBER(file_path) 19 IPC_STRUCT_TRAITS_MEMBER(file_path)
(...skipping 28 matching lines...) Expand all
48 48
49 // Creates a new blob that's a clone of an existing src blob. 49 // Creates a new blob that's a clone of an existing src blob.
50 // The source blob must be fully built. 50 // The source blob must be fully built.
51 IPC_MESSAGE_CONTROL2(BlobHostMsg_CloneBlob, 51 IPC_MESSAGE_CONTROL2(BlobHostMsg_CloneBlob,
52 GURL /* url */, 52 GURL /* url */,
53 GURL /* src_url */) 53 GURL /* src_url */)
54 54
55 // Removes a blob. 55 // Removes a blob.
56 IPC_MESSAGE_CONTROL1(BlobHostMsg_RemoveBlob, 56 IPC_MESSAGE_CONTROL1(BlobHostMsg_RemoveBlob,
57 GURL /* url */) 57 GURL /* url */)
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/common/webkit_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698