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

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

Issue 7633061: Merge 94892 - Pepper quota support (Closed) Base URL: svn://svn.chromium.org/chrome/branches/835/src/
Patch Set: Created 9 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
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 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 "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 #include "ipc/ipc_platform_file.h" 10 #include "ipc/ipc_platform_file.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 // WebFileWriter::cancel() message. 125 // WebFileWriter::cancel() message.
126 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_CancelWrite, 126 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_CancelWrite,
127 int /* request id */, 127 int /* request id */,
128 int /* id of request to cancel */) 128 int /* id of request to cancel */)
129 129
130 // Pepper's OpenFile message. 130 // Pepper's OpenFile message.
131 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_OpenFile, 131 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_OpenFile,
132 int /* request id */, 132 int /* request id */,
133 GURL /* file path */, 133 GURL /* file path */,
134 int /* file flags */) 134 int /* file flags */)
135
136 // Pre- and post-update notifications for ppapi implementation.
137 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate,
138 GURL /* file_path */)
139
140 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate,
141 GURL /* file_path */,
142 int64 /* delta */)
OLDNEW
« no previous file with comments | « content/browser/file_system/file_system_dispatcher_host.cc ('k') | content/renderer/pepper_plugin_delegate_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698