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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 | 643 |
644 // PPB_URLResponseInfo. | 644 // PPB_URLResponseInfo. |
645 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLResponseInfo_GetProperty, | 645 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLResponseInfo_GetProperty, |
646 pp::proxy::HostResource /* response */, | 646 pp::proxy::HostResource /* response */, |
647 int32_t /* property */, | 647 int32_t /* property */, |
648 pp::proxy::SerializedVar /* result */) | 648 pp::proxy::SerializedVar /* result */) |
649 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLResponseInfo_GetBodyAsFileRef, | 649 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLResponseInfo_GetBodyAsFileRef, |
650 pp::proxy::HostResource /* response */, | 650 pp::proxy::HostResource /* response */, |
651 pp::proxy::PPBFileRef_CreateInfo /* result */) | 651 pp::proxy::PPBFileRef_CreateInfo /* result */) |
652 | 652 |
| 653 // PPB_URLUtil. |
| 654 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_ResolveRelativeToDocument, |
| 655 PP_Instance /* instance */, |
| 656 pp::proxy::SerializedVar /* relative */, |
| 657 pp::proxy::SerializedVar /* result */) |
| 658 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_DocumentCanRequest, |
| 659 PP_Instance /* instance */, |
| 660 pp::proxy::SerializedVar /* relative */, |
| 661 PP_Bool /* result */) |
| 662 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBURLUtil_DocumentCanAccessDocument, |
| 663 PP_Instance /* active */, |
| 664 PP_Instance /* target */, |
| 665 PP_Bool /* result */) |
| 666 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLUtil_GetDocumentURL, |
| 667 PP_Instance /* active */, |
| 668 pp::proxy::SerializedVar /* result */) |
| 669 |
653 // PPB_Var. | 670 // PPB_Var. |
654 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_AddRefObject, | 671 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_AddRefObject, |
655 int64 /* object_id */) | 672 int64 /* object_id */) |
656 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_ReleaseObject, | 673 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVar_ReleaseObject, |
657 int64 /* object_id */) | 674 int64 /* object_id */) |
658 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBVar_ConvertType, | 675 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBVar_ConvertType, |
659 PP_Instance /* instance */, | 676 PP_Instance /* instance */, |
660 pp::proxy::SerializedVar /* var */, | 677 pp::proxy::SerializedVar /* var */, |
661 int /* new_type */, | 678 int /* new_type */, |
662 pp::proxy::SerializedVar /* exception */, | 679 pp::proxy::SerializedVar /* exception */, |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, | 735 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, |
719 pp::proxy::SerializedVar /* var */, | 736 pp::proxy::SerializedVar /* var */, |
720 int64 /* object_class */, | 737 int64 /* object_class */, |
721 int64 /* object-data */, | 738 int64 /* object-data */, |
722 PP_Bool /* result */) | 739 PP_Bool /* result */) |
723 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, | 740 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, |
724 PP_Instance /* instance */, | 741 PP_Instance /* instance */, |
725 int64 /* object_class */, | 742 int64 /* object_class */, |
726 int64 /* object_data */, | 743 int64 /* object_data */, |
727 pp::proxy::SerializedVar /* result */) | 744 pp::proxy::SerializedVar /* result */) |
OLD | NEW |