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 <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 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1249 | 1249 |
1250 // Creates a FileRef to a path on an internal file system. This message may | 1250 // Creates a FileRef to a path on an internal file system. This message may |
1251 // be sent from the renderer or the plugin. | 1251 // be sent from the renderer or the plugin. |
1252 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_CreateInternal, | 1252 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_CreateInternal, |
1253 PP_Resource /* file_system */, | 1253 PP_Resource /* file_system */, |
1254 std::string /* internal_path */) | 1254 std::string /* internal_path */) |
1255 | 1255 |
1256 // Requests that the browser create a directory at the location indicated by | 1256 // Requests that the browser create a directory at the location indicated by |
1257 // the FileRef. | 1257 // the FileRef. |
1258 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileRef_MakeDirectory, | 1258 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileRef_MakeDirectory, |
1259 bool /* make_ancestors */) | 1259 int32_t /* make_directory_flags */) |
1260 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_MakeDirectoryReply) | 1260 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_MakeDirectoryReply) |
1261 | 1261 |
1262 // 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 |
1263 // at the location indicated by the FileRef. | 1263 // at the location indicated by the FileRef. |
1264 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_Touch, | 1264 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FileRef_Touch, |
1265 PP_Time /* last_accessed */, | 1265 PP_Time /* last_accessed */, |
1266 PP_Time /* last_modified */) | 1266 PP_Time /* last_modified */) |
1267 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_TouchReply) | 1267 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileRef_TouchReply) |
1268 | 1268 |
1269 // Requests that the browser delete a file or directory at the location | 1269 // Requests that the browser delete a file or directory at the location |
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2012 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2012 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2013 PP_TalkPermission /* permission */) | 2013 PP_TalkPermission /* permission */) |
2014 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2014 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2015 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2015 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2016 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2016 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2017 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2017 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2018 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2018 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2019 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2019 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2020 | 2020 |
2021 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2021 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |