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

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

Issue 10828043: Wire up the deleteFileSystem operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adds comment. Created 8 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/fileapi/file_system_dispatcher.cc ('k') | content/renderer/render_view_impl.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) 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 the file system. 5 // IPC messages for the file system.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/file_util_proxy.h" 8 #include "base/file_util_proxy.h"
9 #include "googleurl/src/gurl.h" 9 #include "googleurl/src/gurl.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // File system messages sent from the child process to the browser. 53 // File system messages sent from the child process to the browser.
54 54
55 // WebFrameClient::openFileSystem() message. 55 // WebFrameClient::openFileSystem() message.
56 IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Open, 56 IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Open,
57 int /* request_id */, 57 int /* request_id */,
58 GURL /* origin_url */, 58 GURL /* origin_url */,
59 fileapi::FileSystemType /* type */, 59 fileapi::FileSystemType /* type */,
60 int64 /* requested_size */, 60 int64 /* requested_size */,
61 bool /* create */) 61 bool /* create */)
62 62
63 // WebFrameClient::deleteFileSystem() message.
64 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_DeleteFileSystem,
65 int /* request_id */,
66 GURL /* origin_url */,
67 fileapi::FileSystemType /* type */)
68
63 // WebFileSystem::move() message. 69 // WebFileSystem::move() message.
64 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Move, 70 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Move,
65 int /* request_id */, 71 int /* request_id */,
66 GURL /* src path */, 72 GURL /* src path */,
67 GURL /* dest path */) 73 GURL /* dest path */)
68 74
69 // WebFileSystem::copy() message. 75 // WebFileSystem::copy() message.
70 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Copy, 76 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Copy,
71 int /* request_id */, 77 int /* request_id */,
72 GURL /* src path */, 78 GURL /* src path */,
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 GURL /* file path */, 154 GURL /* file path */,
149 FilePath /* platform_path */) 155 FilePath /* platform_path */)
150 156
151 // Pre- and post-update notifications for ppapi implementation. 157 // Pre- and post-update notifications for ppapi implementation.
152 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, 158 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate,
153 GURL /* file_path */) 159 GURL /* file_path */)
154 160
155 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, 161 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate,
156 GURL /* file_path */, 162 GURL /* file_path */,
157 int64 /* delta */) 163 int64 /* delta */)
OLDNEW
« no previous file with comments | « content/common/fileapi/file_system_dispatcher.cc ('k') | content/renderer/render_view_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698