OLD | NEW |
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 <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 1236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1247 base::FilePath /* external_path */) | 1247 base::FilePath /* external_path */) |
1248 | 1248 |
1249 // Creates a FileRef to a path on an internal file system. This message may | 1249 // Creates a FileRef to a path on an internal file system. This message may |
1250 // be sent from the renderer or the plugin. | 1250 // be sent from the renderer or the plugin. |
1251 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_CreateInternal, | 1251 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_CreateInternal, |
1252 PP_Resource /* file_system */, | 1252 PP_Resource /* file_system */, |
1253 std::string /* internal_path */) | 1253 std::string /* internal_path */) |
1254 | 1254 |
1255 // Requests that the browser create a directory at the location indicated by | 1255 // Requests that the browser create a directory at the location indicated by |
1256 // the FileRef. | 1256 // the FileRef. |
1257 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileRef_MakeDirectory, | 1257 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_MakeDirectory, |
| 1258 bool /* exclusive */, |
1258 bool /* make_ancestors */) | 1259 bool /* make_ancestors */) |
1259 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_MakeDirectoryReply) | 1260 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_MakeDirectoryReply) |
1260 | 1261 |
1261 // Requests that the browser update the last accessed and last modified times | 1262 // Requests that the browser update the last accessed and last modified times |
1262 // at the location indicated by the FileRef. | 1263 // at the location indicated by the FileRef. |
1263 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_Touch, | 1264 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_Touch, |
1264 PP_Time /* last_accessed */, | 1265 PP_Time /* last_accessed */, |
1265 PP_Time /* last_modified */) | 1266 PP_Time /* last_modified */) |
1266 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_TouchReply) | 1267 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_TouchReply) |
1267 | 1268 |
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2002 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2003 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2003 PP_TalkPermission /* permission */) | 2004 PP_TalkPermission /* permission */) |
2004 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2005 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2005 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2006 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2006 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2007 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2007 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2008 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2008 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2009 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2009 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2010 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2010 | 2011 |
2011 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2012 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |