OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 PP_Instance /* instance */, | 289 PP_Instance /* instance */, |
290 PP_Bool /* has_focus */) | 290 PP_Bool /* has_focus */) |
291 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleInputEvent, | 291 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleInputEvent, |
292 PP_Instance /* instance */, | 292 PP_Instance /* instance */, |
293 PP_InputEvent /* event */, | 293 PP_InputEvent /* event */, |
294 PP_Bool /* result */) | 294 PP_Bool /* result */) |
295 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad, | 295 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad, |
296 PP_Instance /* instance */, | 296 PP_Instance /* instance */, |
297 pp::proxy::HostResource /* url_loader */, | 297 pp::proxy::HostResource /* url_loader */, |
298 PP_Bool /* result */) | 298 PP_Bool /* result */) |
299 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstance_GetInstanceObject, | |
300 PP_Instance /* instance */, | |
301 pp::proxy::SerializedVar /* result */) | |
302 | 299 |
303 // PPP_Instance_Private. | 300 // PPP_Instance_Private. |
304 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, | 301 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, |
305 PP_Instance /* instance */, | 302 PP_Instance /* instance */, |
306 pp::proxy::SerializedVar /* result */) | 303 pp::proxy::SerializedVar /* result */) |
307 | 304 |
308 // PPB_URLLoader | 305 // PPB_URLLoader |
309 // (Messages from browser to plugin to notify it of changes in state.) | 306 // (Messages from browser to plugin to notify it of changes in state.) |
310 IPC_MESSAGE_ROUTED1(PpapiMsg_PPBURLLoader_UpdateProgress, | 307 IPC_MESSAGE_ROUTED1(PpapiMsg_PPBURLLoader_UpdateProgress, |
311 pp::proxy::PPBURLLoader_UpdateProgress_Params /* params */) | 308 pp::proxy::PPBURLLoader_UpdateProgress_Params /* params */) |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 PP_Bool /* is_always_opaque */, | 849 PP_Bool /* is_always_opaque */, |
853 pp::proxy::HostResource /* result */) | 850 pp::proxy::HostResource /* result */) |
854 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, | 851 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, |
855 PP_Instance /* instance */, | 852 PP_Instance /* instance */, |
856 int32 /* format */, | 853 int32 /* format */, |
857 PP_Size /* size */, | 854 PP_Size /* size */, |
858 PP_Bool /* init_to_zero */, | 855 PP_Bool /* init_to_zero */, |
859 pp::proxy::HostResource /* result_resource */, | 856 pp::proxy::HostResource /* result_resource */, |
860 std::string /* image_data_desc */, | 857 std::string /* image_data_desc */, |
861 pp::proxy::ImageHandle /* result */) | 858 pp::proxy::ImageHandle /* result */) |
OLD | NEW |