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

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

Issue 13820003: Pepper: Autogenerate thunk for PPB_TrueTypeFont. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: nit comment in gamepad for presubmit Created 7 years, 8 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/ppapi_shared.gypi ('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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 virtual PP_Resource CreateTouchInputEvent( 73 virtual PP_Resource CreateTouchInputEvent(
74 PP_Instance instance, 74 PP_Instance instance,
75 PP_InputEvent_Type type, 75 PP_InputEvent_Type type,
76 PP_TimeTicks time_stamp, 76 PP_TimeTicks time_stamp,
77 uint32_t modifiers) OVERRIDE; 77 uint32_t modifiers) OVERRIDE;
78 virtual PP_Resource CreateResourceArray(PP_Instance instance, 78 virtual PP_Resource CreateResourceArray(PP_Instance instance,
79 const PP_Resource elements[], 79 const PP_Resource elements[],
80 uint32_t size) OVERRIDE; 80 uint32_t size) OVERRIDE;
81 virtual PP_Resource CreateTrueTypeFont( 81 virtual PP_Resource CreateTrueTypeFont(
82 PP_Instance instance, 82 PP_Instance instance,
83 const PP_TrueTypeFontDesc_Dev& desc) OVERRIDE; 83 const PP_TrueTypeFontDesc_Dev* desc) OVERRIDE;
84 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; 84 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE;
85 virtual PP_Resource CreateURLRequestInfo( 85 virtual PP_Resource CreateURLRequestInfo(
86 PP_Instance instance) OVERRIDE; 86 PP_Instance instance) OVERRIDE;
87 virtual PP_Resource CreateURLResponseInfo( 87 virtual PP_Resource CreateURLResponseInfo(
88 PP_Instance instance, 88 PP_Instance instance,
89 const URLResponseInfoData& data, 89 const URLResponseInfoData& data,
90 PP_Resource file_ref_resource) OVERRIDE; 90 PP_Resource file_ref_resource) OVERRIDE;
91 virtual PP_Resource CreateWheelInputEvent( 91 virtual PP_Resource CreateWheelInputEvent(
92 PP_Instance instance, 92 PP_Instance instance,
93 PP_TimeTicks time_stamp, 93 PP_TimeTicks time_stamp,
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 169
170 private: 170 private:
171 Connection GetConnection(); 171 Connection GetConnection();
172 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); 172 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy);
173 }; 173 };
174 174
175 } // namespace proxy 175 } // namespace proxy
176 } // namespace ppapi 176 } // namespace ppapi
177 177
178 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ 178 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/ppapi_shared.gypi ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698