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 2192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2203 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_UserMetricsRecordAction, | 2203 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_UserMetricsRecordAction, |
2204 std::string /* action */) | 2204 std::string /* action */) |
2205 | 2205 |
2206 // Notifies the renderer that the current PDF uses an unsupported feature. | 2206 // Notifies the renderer that the current PDF uses an unsupported feature. |
2207 IPC_MESSAGE_CONTROL0(PpapiHostMsg_PDF_HasUnsupportedFeature) | 2207 IPC_MESSAGE_CONTROL0(PpapiHostMsg_PDF_HasUnsupportedFeature) |
2208 | 2208 |
2209 // Notifies the renderer to print the current PDF. | 2209 // Notifies the renderer to print the current PDF. |
2210 IPC_MESSAGE_CONTROL0(PpapiHostMsg_PDF_Print) | 2210 IPC_MESSAGE_CONTROL0(PpapiHostMsg_PDF_Print) |
2211 | 2211 |
2212 // Notifies the renderer to save the current PDF. | 2212 // Notifies the renderer to save the current PDF. |
2213 IPC_MESSAGE_CONTROL0(PpapiHostMsg_PDF_SaveAs) | 2213 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PDF_SaveAs, |
| 2214 std::string /* url */) |
2214 | 2215 |
2215 // Requests a resource image for the plugin at a particular scale. | 2216 // Requests a resource image for the plugin at a particular scale. |
2216 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PDF_GetResourceImage, | 2217 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PDF_GetResourceImage, |
2217 PP_ResourceImage /* image_id */, | 2218 PP_ResourceImage /* image_id */, |
2218 float /* scale */) | 2219 float /* scale */) |
2219 | 2220 |
2220 // Reply for PpapiHostMsg_PDF_GetResourceImage containing the host resource id | 2221 // Reply for PpapiHostMsg_PDF_GetResourceImage containing the host resource id |
2221 // of the image and a PP_ImageDataDesc which describes the image. Also carries | 2222 // of the image and a PP_ImageDataDesc which describes the image. Also carries |
2222 // a shared memory handle pointing to the memory containg the image. | 2223 // a shared memory handle pointing to the memory containg the image. |
2223 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_PDF_GetResourceImageReply, | 2224 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_PDF_GetResourceImageReply, |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2265 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2266 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2266 PP_TalkPermission /* permission */) | 2267 PP_TalkPermission /* permission */) |
2267 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2268 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2268 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2269 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2269 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2270 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2270 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2271 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2271 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2272 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2272 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2273 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2273 | 2274 |
2274 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2275 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |