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 944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
955 PP_Instance /* active */, | 955 PP_Instance /* active */, |
956 PP_Instance /* target */, | 956 PP_Instance /* target */, |
957 PP_Bool /* result */) | 957 PP_Bool /* result */) |
958 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetDocumentURL, | 958 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetDocumentURL, |
959 PP_Instance /* active */, | 959 PP_Instance /* active */, |
960 PP_URLComponents_Dev /* components */, | 960 PP_URLComponents_Dev /* components */, |
961 ppapi::proxy::SerializedVar /* result */) | 961 ppapi::proxy::SerializedVar /* result */) |
962 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetPluginInstanceURL, | 962 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetPluginInstanceURL, |
963 PP_Instance /* active */, | 963 PP_Instance /* active */, |
964 ppapi::proxy::SerializedVar /* result */) | 964 ppapi::proxy::SerializedVar /* result */) |
| 965 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetPluginRefererURL, |
| 966 PP_Instance /* instance */, |
| 967 ppapi::proxy::SerializedVar /* result */) |
965 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SetCursor, | 968 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SetCursor, |
966 PP_Instance /* instance */, | 969 PP_Instance /* instance */, |
967 int32_t /* type */, | 970 int32_t /* type */, |
968 ppapi::HostResource /* custom_image */, | 971 ppapi::HostResource /* custom_image */, |
969 PP_Point /* hot_spot */) | 972 PP_Point /* hot_spot */) |
970 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SetTextInputType, | 973 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SetTextInputType, |
971 PP_Instance /* instance */, | 974 PP_Instance /* instance */, |
972 PP_TextInput_Type /* type */) | 975 PP_TextInput_Type /* type */) |
973 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_UpdateCaretPosition, | 976 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_UpdateCaretPosition, |
974 PP_Instance /* instance */, | 977 PP_Instance /* instance */, |
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2052 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2055 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2053 PP_TalkPermission /* permission */) | 2056 PP_TalkPermission /* permission */) |
2054 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2057 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2055 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2058 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2056 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2059 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2057 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2060 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2058 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2061 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2059 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2062 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2060 | 2063 |
2061 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2064 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |