| 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/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 // PPB_Graphics2D. | 427 // PPB_Graphics2D. |
| 428 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics2D_FlushACK, | 428 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics2D_FlushACK, |
| 429 ppapi::HostResource /* graphics_2d */, | 429 ppapi::HostResource /* graphics_2d */, |
| 430 int32_t /* pp_error */) | 430 int32_t /* pp_error */) |
| 431 | 431 |
| 432 // PPB_Graphics3D. | 432 // PPB_Graphics3D. |
| 433 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK, | 433 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK, |
| 434 ppapi::HostResource /* graphics_3d */, | 434 ppapi::HostResource /* graphics_3d */, |
| 435 int32_t /* pp_error */) | 435 int32_t /* pp_error */) |
| 436 | 436 |
| 437 // PPB_ImageData. |
| 438 IPC_MESSAGE_ROUTED1(PpapiMsg_PPBImageData_NotifyUnusedImageData, |
| 439 ppapi::HostResource /* old_image_data */) |
| 440 |
| 437 // PPB_Instance. | 441 // PPB_Instance. |
| 438 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBInstance_MouseLockComplete, | 442 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBInstance_MouseLockComplete, |
| 439 PP_Instance /* instance */, | 443 PP_Instance /* instance */, |
| 440 int32_t /* result */) | 444 int32_t /* result */) |
| 441 | 445 |
| 442 // PPP_Class. | 446 // PPP_Class. |
| 443 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasProperty, | 447 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasProperty, |
| 444 int64 /* ppp_class */, | 448 int64 /* ppp_class */, |
| 445 int64 /* object */, | 449 int64 /* object */, |
| 446 ppapi::proxy::SerializedVar /* property */, | 450 ppapi::proxy::SerializedVar /* property */, |
| (...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1518 | 1522 |
| 1519 // File chooser. | 1523 // File chooser. |
| 1520 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) | 1524 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) |
| 1521 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, | 1525 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, |
| 1522 bool /* save_as */, | 1526 bool /* save_as */, |
| 1523 bool /* open_multiple */, | 1527 bool /* open_multiple */, |
| 1524 std::string /* suggested_file_name */, | 1528 std::string /* suggested_file_name */, |
| 1525 std::vector<std::string> /* accept_mime_types */) | 1529 std::vector<std::string> /* accept_mime_types */) |
| 1526 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, | 1530 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, |
| 1527 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) | 1531 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) |
| OLD | NEW |