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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 PP_Bool /* on_top */) | 373 PP_Bool /* on_top */) |
374 // This has to be synchronous becuase the caller may want to composite on | 374 // This has to be synchronous becuase the caller may want to composite on |
375 // top of the resulting text after the call is complete. | 375 // top of the resulting text after the call is complete. |
376 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlash_DrawGlyphs, | 376 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlash_DrawGlyphs, |
377 pp::proxy::PPBFlash_DrawGlyphs_Params /* params */, | 377 pp::proxy::PPBFlash_DrawGlyphs_Params /* params */, |
378 PP_Bool /* result */) | 378 PP_Bool /* result */) |
379 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL, | 379 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL, |
380 PP_Instance /* instance */, | 380 PP_Instance /* instance */, |
381 std::string /* url */, | 381 std::string /* url */, |
382 pp::proxy::SerializedVar /* result */) | 382 pp::proxy::SerializedVar /* result */) |
383 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_NavigateToURL, | 383 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_Navigate, |
384 PP_Instance /* instance */, | 384 pp::proxy::HostResource /* request_info */, |
385 std::string /* url */, | |
386 std::string /* target */, | 385 std::string /* target */, |
387 PP_Bool /* result */) | 386 bool /* from_user_action */, |
| 387 int32_t /* result */) |
388 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, | 388 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, |
389 PP_Instance /* instance */) | 389 PP_Instance /* instance */) |
390 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, | 390 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, |
391 PP_Instance /* instance */) | 391 PP_Instance /* instance */) |
392 | 392 |
393 // PPB_Flash_Clipboard. | 393 // PPB_Flash_Clipboard. |
394 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, | 394 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, |
395 PP_Instance /* instance */, | 395 PP_Instance /* instance */, |
396 int /* clipboard_type */, | 396 int /* clipboard_type */, |
397 int /* format */, | 397 int /* format */, |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 725 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
726 pp::proxy::SerializedVar /* var */, | 726 pp::proxy::SerializedVar /* var */, |
727 int64 /* object_class */, | 727 int64 /* object_class */, |
728 int64 /* object-data */, | 728 int64 /* object-data */, |
729 PP_Bool /* result */) | 729 PP_Bool /* result */) |
730 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 730 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
731 PP_Instance /* instance */, | 731 PP_Instance /* instance */, |
732 int64 /* object_class */, | 732 int64 /* object_class */, |
733 int64 /* object_data */, | 733 int64 /* object_data */, |
734 pp::proxy::SerializedVar /* result */) | 734 pp::proxy::SerializedVar /* result */) |
OLD | NEW |