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

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

Issue 12600019: Add Pepper TrueType font API plumbing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux_aura. Pango headers missing. Created 7 years, 9 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/ppb_instance_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('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 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 5 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 int32_t click_count, 68 int32_t click_count,
69 const PP_Point* mouse_movement) OVERRIDE; 69 const PP_Point* mouse_movement) OVERRIDE;
70 virtual PP_Resource CreateTouchInputEvent( 70 virtual PP_Resource CreateTouchInputEvent(
71 PP_Instance instance, 71 PP_Instance instance,
72 PP_InputEvent_Type type, 72 PP_InputEvent_Type type,
73 PP_TimeTicks time_stamp, 73 PP_TimeTicks time_stamp,
74 uint32_t modifiers) OVERRIDE; 74 uint32_t modifiers) OVERRIDE;
75 virtual PP_Resource CreateResourceArray(PP_Instance instance, 75 virtual PP_Resource CreateResourceArray(PP_Instance instance,
76 const PP_Resource elements[], 76 const PP_Resource elements[],
77 uint32_t size) OVERRIDE; 77 uint32_t size) OVERRIDE;
78 virtual PP_Resource CreateTrueTypeFont(
79 PP_Instance instance,
80 const PP_TrueTypeFontDesc_Dev& desc) OVERRIDE;
78 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; 81 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE;
79 virtual PP_Resource CreateURLRequestInfo( 82 virtual PP_Resource CreateURLRequestInfo(
80 PP_Instance instance, 83 PP_Instance instance,
81 const URLRequestInfoData& data) OVERRIDE; 84 const URLRequestInfoData& data) OVERRIDE;
82 virtual PP_Resource CreateURLResponseInfo( 85 virtual PP_Resource CreateURLResponseInfo(
83 PP_Instance instance, 86 PP_Instance instance,
84 const URLResponseInfoData& data, 87 const URLResponseInfoData& data,
85 PP_Resource file_ref_resource) OVERRIDE; 88 PP_Resource file_ref_resource) OVERRIDE;
86 virtual PP_Resource CreateWheelInputEvent( 89 virtual PP_Resource CreateWheelInputEvent(
87 PP_Instance instance, 90 PP_Instance instance,
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 170
168 private: 171 private:
169 Connection GetConnection(); 172 Connection GetConnection();
170 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 173 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
171 }; 174 };
172 175
173 } // namespace proxy 176 } // namespace proxy
174 } // namespace ppapi 177 } // namespace ppapi
175 178
176 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 179 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698