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

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

Issue 7044012: Support getting the font list in Pepper. This currently only works out of (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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/plugin_dispatcher.cc ('k') | ppapi/proxy/ppb_font_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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 PP_Instance /* instance_id */, 511 PP_Instance /* instance_id */,
512 pp::proxy::HostResource /* result */) 512 pp::proxy::HostResource /* result */)
513 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp, 513 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp,
514 pp::proxy::HostResource /* connector */, 514 pp::proxy::HostResource /* connector */,
515 std::string /* host */, 515 std::string /* host */,
516 uint16_t /* port */) 516 uint16_t /* port */)
517 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress, 517 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress,
518 pp::proxy::HostResource /* connector */, 518 pp::proxy::HostResource /* connector */,
519 std::string /* net_address_as_string */) 519 std::string /* net_address_as_string */)
520 520
521 // PPB_Font.
522 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
523 std::string /* result */)
524
521 // PPB_Fullscreen. 525 // PPB_Fullscreen.
522 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFullscreen_SetFullscreen, 526 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFullscreen_SetFullscreen,
523 PP_Instance /* instance */, 527 PP_Instance /* instance */,
524 PP_Bool /* fullscreen */, 528 PP_Bool /* fullscreen */,
525 PP_Bool /* result */) 529 PP_Bool /* result */)
526 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFullscreen_GetScreenSize, 530 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFullscreen_GetScreenSize,
527 PP_Instance /* instance */, 531 PP_Instance /* instance */,
528 PP_Bool /* result */, 532 PP_Bool /* result */,
529 PP_Size /* size */) 533 PP_Size /* size */)
530 534
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 pp::proxy::HostResource /* result */) 751 pp::proxy::HostResource /* result */)
748 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, 752 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData,
749 PP_Instance /* instance */, 753 PP_Instance /* instance */,
750 int32 /* format */, 754 int32 /* format */,
751 PP_Size /* size */, 755 PP_Size /* size */,
752 PP_Bool /* init_to_zero */, 756 PP_Bool /* init_to_zero */,
753 pp::proxy::HostResource /* result_resource */, 757 pp::proxy::HostResource /* result_resource */,
754 std::string /* image_data_desc */, 758 std::string /* image_data_desc */,
755 pp::proxy::ImageHandle /* result */) 759 pp::proxy::ImageHandle /* result */)
756 760
OLDNEW
« no previous file with comments | « ppapi/proxy/plugin_dispatcher.cc ('k') | ppapi/proxy/ppb_font_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698