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

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

Issue 15746017: Move webkit/blob to new locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 6 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 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/public/common/common_param_traits.h" 8 #include "content/public/common/common_param_traits.h"
9 #include "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 #include "webkit/blob/blob_data.h" 10 #include "webkit/common/blob/blob_data.h"
11 11
12 #define IPC_MESSAGE_START BlobMsgStart 12 #define IPC_MESSAGE_START BlobMsgStart
13 13
14 // Blob messages sent from the renderer to the browser. 14 // Blob messages sent from the renderer to the browser.
15 15
16 // Registers a blob as being built. 16 // Registers a blob as being built.
17 IPC_MESSAGE_CONTROL1(BlobHostMsg_StartBuildingBlob, 17 IPC_MESSAGE_CONTROL1(BlobHostMsg_StartBuildingBlob,
18 GURL /* url */) 18 GURL /* url */)
19 19
20 // Appends data to a blob being built. 20 // Appends data to a blob being built.
(...skipping 14 matching lines...) Expand all
35 35
36 // Creates a new blob that's a clone of an existing src blob. 36 // Creates a new blob that's a clone of an existing src blob.
37 // The source blob must be fully built. 37 // The source blob must be fully built.
38 IPC_MESSAGE_CONTROL2(BlobHostMsg_CloneBlob, 38 IPC_MESSAGE_CONTROL2(BlobHostMsg_CloneBlob,
39 GURL /* url */, 39 GURL /* url */,
40 GURL /* src_url */) 40 GURL /* src_url */)
41 41
42 // Removes a blob. 42 // Removes a blob.
43 IPC_MESSAGE_CONTROL1(BlobHostMsg_RemoveBlob, 43 IPC_MESSAGE_CONTROL1(BlobHostMsg_RemoveBlob,
44 GURL /* url */) 44 GURL /* url */)
OLDNEW
« no previous file with comments | « content/browser/storage_partition_impl_map.cc ('k') | content/common/fileapi/webblobregistry_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698