Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 10824272: Add a skeleton gamepad resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698