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

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

Issue 15491006: Rename PPB_Flash_DeviceID interface to PPB_Flash_DRM (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/resource_creation_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/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 27 matching lines...) Expand all
38 #include "ppapi/c/ppb_image_data.h" 38 #include "ppapi/c/ppb_image_data.h"
39 #include "ppapi/c/private/pp_content_decryptor.h" 39 #include "ppapi/c/private/pp_content_decryptor.h"
40 #include "ppapi/c/private/pp_private_font_charset.h" 40 #include "ppapi/c/private/pp_private_font_charset.h"
41 #include "ppapi/c/private/ppb_flash.h" 41 #include "ppapi/c/private/ppb_flash.h"
42 #include "ppapi/c/private/ppb_host_resolver_private.h" 42 #include "ppapi/c/private/ppb_host_resolver_private.h"
43 #include "ppapi/c/private/ppb_net_address_private.h" 43 #include "ppapi/c/private/ppb_net_address_private.h"
44 #include "ppapi/c/private/ppb_pdf.h" 44 #include "ppapi/c/private/ppb_pdf.h"
45 #include "ppapi/c/private/ppb_tcp_socket_private.h" 45 #include "ppapi/c/private/ppb_tcp_socket_private.h"
46 #include "ppapi/c/private/ppb_udp_socket_private.h" 46 #include "ppapi/c/private/ppb_udp_socket_private.h"
47 #include "ppapi/c/private/ppp_flash_browser_operations.h" 47 #include "ppapi/c/private/ppp_flash_browser_operations.h"
48 #include "ppapi/c/private/ppb_flash_drm.h"
48 #include "ppapi/proxy/host_resolver_private_resource.h" 49 #include "ppapi/proxy/host_resolver_private_resource.h"
49 #include "ppapi/proxy/ppapi_param_traits.h" 50 #include "ppapi/proxy/ppapi_param_traits.h"
50 #include "ppapi/proxy/ppapi_proxy_export.h" 51 #include "ppapi/proxy/ppapi_proxy_export.h"
51 #include "ppapi/proxy/resource_message_params.h" 52 #include "ppapi/proxy/resource_message_params.h"
52 #include "ppapi/proxy/serialized_flash_menu.h" 53 #include "ppapi/proxy/serialized_flash_menu.h"
53 #include "ppapi/proxy/serialized_handle.h" 54 #include "ppapi/proxy/serialized_handle.h"
54 #include "ppapi/proxy/serialized_structs.h" 55 #include "ppapi/proxy/serialized_structs.h"
55 #include "ppapi/proxy/serialized_var.h" 56 #include "ppapi/proxy/serialized_var.h"
56 #include "ppapi/shared_impl/dir_contents.h" 57 #include "ppapi/shared_impl/dir_contents.h"
57 #include "ppapi/shared_impl/file_path.h" 58 #include "ppapi/shared_impl/file_path.h"
(...skipping 1320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 1379
1379 // FileSystem 1380 // FileSystem
1380 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create, 1381 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create,
1381 PP_FileSystemType /* type */) 1382 PP_FileSystemType /* type */)
1382 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open, 1383 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open,
1383 int64_t /* expected_size */) 1384 int64_t /* expected_size */)
1384 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply) 1385 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply)
1385 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitIsolatedFileSystem, 1386 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitIsolatedFileSystem,
1386 std::string /* fsid */) 1387 std::string /* fsid */)
1387 1388
1388 // Flash device ID. 1389 // Flash DRM ------------------------------------------------------------------
1389 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_Create) 1390 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_Create)
1390 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_GetDeviceID) 1391
1391 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply, 1392 // Requests the device ID.
1393 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDRM_GetDeviceID)
1394 // Reply for GetDeviceID which includes the device ID as a string.
1395 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDRM_GetDeviceIDReply,
1392 std::string /* id */) 1396 std::string /* id */)
1393 1397
1394 // Gamepad. 1398 // Gamepad.
1395 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) 1399 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create)
1396 1400
1397 // Requests that the gamepad host send the shared memory handle to the plugin 1401 // Requests that the gamepad host send the shared memory handle to the plugin
1398 // process. 1402 // process.
1399 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory) 1403 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory)
1400 1404
1401 // Reply to a RequestMemory call. This supplies the shared memory handle. The 1405 // Reply to a RequestMemory call. This supplies the shared memory handle. The
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
1894 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) 1898 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply)
1895 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) 1899 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame)
1896 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply, 1900 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoSource_GetFrameReply,
1897 ppapi::HostResource /* resource_id */, 1901 ppapi::HostResource /* resource_id */,
1898 PP_ImageDataDesc /* image_data_desc */, 1902 PP_ImageDataDesc /* image_data_desc */,
1899 int /* fd */, 1903 int /* fd */,
1900 PP_TimeTicks /* timestamp */) 1904 PP_TimeTicks /* timestamp */)
1901 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) 1905 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close)
1902 1906
1903 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1907 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/resource_creation_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698