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 1890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1901 ppapi::PepperFilePath /* from_path */, | 1901 ppapi::PepperFilePath /* from_path */, |
1902 ppapi::PepperFilePath /* to_path */) | 1902 ppapi::PepperFilePath /* to_path */) |
1903 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir, | 1903 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFile_DeleteFileOrDir, |
1904 ppapi::PepperFilePath /* path */, | 1904 ppapi::PepperFilePath /* path */, |
1905 bool /* recursive */) | 1905 bool /* recursive */) |
1906 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir, | 1906 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_CreateDir, |
1907 ppapi::PepperFilePath /* path */) | 1907 ppapi::PepperFilePath /* path */) |
1908 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile, | 1908 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_QueryFile, |
1909 ppapi::PepperFilePath /* path */) | 1909 ppapi::PepperFilePath /* path */) |
1910 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFile_QueryFileReply, | 1910 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFile_QueryFileReply, |
1911 base::PlatformFileInfo /* file_info */) | 1911 base::File::Info /* file_info */) |
1912 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_GetDirContents, | 1912 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFile_GetDirContents, |
1913 ppapi::PepperFilePath /* path */) | 1913 ppapi::PepperFilePath /* path */) |
1914 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFile_GetDirContentsReply, | 1914 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFile_GetDirContentsReply, |
1915 ppapi::DirContents /* entries */) | 1915 ppapi::DirContents /* entries */) |
1916 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_CreateTemporaryFile) | 1916 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFile_CreateTemporaryFile) |
1917 | 1917 |
1918 // Flash font file. | 1918 // Flash font file. |
1919 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create, | 1919 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create, |
1920 ppapi::proxy::SerializedFontDescription /* description */, | 1920 ppapi::proxy::SerializedFontDescription /* description */, |
1921 PP_PrivateFontCharset /* charset */) | 1921 PP_PrivateFontCharset /* charset */) |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2029 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2029 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2030 PP_TalkPermission /* permission */) | 2030 PP_TalkPermission /* permission */) |
2031 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2031 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2032 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2032 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2033 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2033 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2034 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2034 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2035 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2035 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2036 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2036 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2037 | 2037 |
2038 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2038 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |