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

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

Issue 10909138: Convert the async device ID getter to a chrome resource host (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 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
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_flash_device_id_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 // File chooser. 1542 // File chooser.
1543 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) 1543 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create)
1544 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, 1544 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show,
1545 bool /* save_as */, 1545 bool /* save_as */,
1546 bool /* open_multiple */, 1546 bool /* open_multiple */,
1547 std::string /* suggested_file_name */, 1547 std::string /* suggested_file_name */,
1548 std::vector<std::string> /* accept_mime_types */) 1548 std::vector<std::string> /* accept_mime_types */)
1549 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, 1549 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply,
1550 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) 1550 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */)
1551 1551
1552 // Flash device ID.
1553 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_Create)
1554 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_GetDeviceID)
1555 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply,
1556 std::string /* id */)
1557
1552 // Gamepad. 1558 // Gamepad.
1553 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) 1559 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create)
1554 1560
1555 // Requests that the gamepad host send the shared memory handle to the plugin 1561 // Requests that the gamepad host send the shared memory handle to the plugin
1556 // process. 1562 // process.
1557 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory) 1563 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory)
1558 1564
1559 // Reply to a RequestMemory call. This supplies the shared memory handle. The 1565 // Reply to a RequestMemory call. This supplies the shared memory handle. The
1560 // actual handle is passed in the ReplyParams struct. 1566 // actual handle is passed in the ReplyParams struct.
1561 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) 1567 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory)
1562 1568
1563 // Printing. 1569 // Printing.
1564 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) 1570 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create)
1565 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings) 1571 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings)
1566 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply, 1572 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply,
1567 PP_PrintSettings_Dev /* print_settings */) 1573 PP_PrintSettings_Dev /* print_settings */)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_flash_device_id_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698