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 1912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1923 std::string /* result */) | 1923 std::string /* result */) |
1924 IPC_MESSAGE_CONTROL3(PpapiHostMsg_FlashClipboard_WriteData, | 1924 IPC_MESSAGE_CONTROL3(PpapiHostMsg_FlashClipboard_WriteData, |
1925 uint32_t /* clipboard_type */, | 1925 uint32_t /* clipboard_type */, |
1926 std::vector<uint32_t> /* formats */, | 1926 std::vector<uint32_t> /* formats */, |
1927 std::vector<std::string> /* data */) | 1927 std::vector<std::string> /* data */) |
1928 | 1928 |
1929 // Flash file. | 1929 // Flash file. |
1930 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_Create) | 1930 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_Create) |
1931 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_OpenFile, | 1931 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_OpenFile, |
1932 ppapi::PepperFilePath /* path */, | 1932 ppapi::PepperFilePath /* path */, |
1933 int /* flags */) | 1933 int /* pp_open_flags */) |
1934 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_RenameFile, | 1934 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_RenameFile, |
1935 ppapi::PepperFilePath /* from_path */, | 1935 ppapi::PepperFilePath /* from_path */, |
1936 ppapi::PepperFilePath /* to_path */) | 1936 ppapi::PepperFilePath /* to_path */) |
1937 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir, | 1937 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir, |
1938 ppapi::PepperFilePath /* path */, | 1938 ppapi::PepperFilePath /* path */, |
1939 bool /* recursive */) | 1939 bool /* recursive */) |
1940 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir, | 1940 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir, |
1941 ppapi::PepperFilePath /* path */) | 1941 ppapi::PepperFilePath /* path */) |
1942 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile, | 1942 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile, |
1943 ppapi::PepperFilePath /* path */) | 1943 ppapi::PepperFilePath /* path */) |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2059 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2059 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2060 PP_TalkPermission /* permission */) | 2060 PP_TalkPermission /* permission */) |
2061 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2061 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2062 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2062 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2063 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2063 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2064 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2064 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2065 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2065 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2066 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2066 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2067 | 2067 |
2068 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2068 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |