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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 113363004: PPAPI: Add new PPB_FileRef.MakeDirectory to support exclusive operation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fix Created 6 years, 11 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 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after
1246 base::FilePath /* external_path */) 1246 base::FilePath /* external_path */)
1247 1247
1248 // Creates a FileRef to a path on an internal file system. This message may 1248 // Creates a FileRef to a path on an internal file system. This message may
1249 // be sent from the renderer or the plugin. 1249 // be sent from the renderer or the plugin.
1250 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_CreateInternal, 1250 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_CreateInternal,
1251 PP_Resource /* file_system */, 1251 PP_Resource /* file_system */,
1252 std::string /* internal_path */) 1252 std::string /* internal_path */)
1253 1253
1254 // Requests that the browser create a directory at the location indicated by 1254 // Requests that the browser create a directory at the location indicated by
1255 // the FileRef. 1255 // the FileRef.
1256 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileRef_MakeDirectory, 1256 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_MakeDirectory,
1257 bool /* exclusive */,
1257 bool /* make_ancestors */) 1258 bool /* make_ancestors */)
1258 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_MakeDirectoryReply) 1259 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_MakeDirectoryReply)
1259 1260
1260 // Requests that the browser update the last accessed and last modified times 1261 // Requests that the browser update the last accessed and last modified times
1261 // at the location indicated by the FileRef. 1262 // at the location indicated by the FileRef.
1262 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_Touch, 1263 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_Touch,
1263 PP_Time /* last_accessed */, 1264 PP_Time /* last_accessed */,
1264 PP_Time /* last_modified */) 1265 PP_Time /* last_modified */)
1265 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_TouchReply) 1266 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_TouchReply)
1266 1267
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
2010 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2011 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2011 PP_TalkPermission /* permission */) 2012 PP_TalkPermission /* permission */)
2012 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2013 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2013 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2014 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2014 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2015 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2015 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2016 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2016 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2017 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2017 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2018 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2018 2019
2019 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2020 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698