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