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

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

Issue 23543002: Add an IPC to abort Stream construction. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 and Stream. 5 // IPC messages for HTML5 Blob and Stream.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/public/common/common_param_traits.h" 9 #include "content/public/common/common_param_traits.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // Appends data to a stream being built. 61 // Appends data to a stream being built.
62 IPC_SYNC_MESSAGE_CONTROL3_0(StreamHostMsg_SyncAppendSharedMemory, 62 IPC_SYNC_MESSAGE_CONTROL3_0(StreamHostMsg_SyncAppendSharedMemory,
63 GURL /* url */, 63 GURL /* url */,
64 base::SharedMemoryHandle, 64 base::SharedMemoryHandle,
65 size_t /* buffer size */) 65 size_t /* buffer size */)
66 66
67 // Finishes building a stream. 67 // Finishes building a stream.
68 IPC_MESSAGE_CONTROL1(StreamHostMsg_FinishBuilding, 68 IPC_MESSAGE_CONTROL1(StreamHostMsg_FinishBuilding,
69 GURL /* url */) 69 GURL /* url */)
70 70
71 // Aborts building a stream.
72 IPC_MESSAGE_CONTROL1(StreamHostMsg_AbortBuilding,
73 GURL /* url */)
74
71 // Creates a new stream that's a clone of an existing src stream. 75 // Creates a new stream that's a clone of an existing src stream.
72 IPC_MESSAGE_CONTROL2(StreamHostMsg_Clone, 76 IPC_MESSAGE_CONTROL2(StreamHostMsg_Clone,
73 GURL /* url */, 77 GURL /* url */,
74 GURL /* src_url */) 78 GURL /* src_url */)
75 79
76 // Removes a stream. 80 // Removes a stream.
77 IPC_MESSAGE_CONTROL1(StreamHostMsg_Remove, 81 IPC_MESSAGE_CONTROL1(StreamHostMsg_Remove,
78 GURL /* url */) 82 GURL /* url */)
OLDNEW
« content/browser/streams/stream.h ('K') | « content/child/webblobregistry_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698