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 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1523 | 1523 |
1524 // File chooser. | 1524 // File chooser. |
1525 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) | 1525 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) |
1526 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, | 1526 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, |
1527 bool /* save_as */, | 1527 bool /* save_as */, |
1528 bool /* open_multiple */, | 1528 bool /* open_multiple */, |
1529 std::string /* suggested_file_name */, | 1529 std::string /* suggested_file_name */, |
1530 std::vector<std::string> /* accept_mime_types */) | 1530 std::vector<std::string> /* accept_mime_types */) |
1531 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, | 1531 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, |
1532 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) | 1532 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) |
| 1533 |
| 1534 // Gamepad. |
| 1535 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) |
| 1536 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory) |
| 1537 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Gamepad_SendMemory, |
| 1538 base::SharedMemoryHandle /* handle */) |
OLD | NEW |