| Index: ppapi/proxy/resource_creation_proxy.cc
|
| diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc
|
| index a821a154c250853c3501c6558031446510a26f60..685af9e70932b316d7a7b5f79be5d76f39f79195 100644
|
| --- a/ppapi/proxy/resource_creation_proxy.cc
|
| +++ b/ppapi/proxy/resource_creation_proxy.cc
|
| @@ -38,6 +38,7 @@
|
| #include "ppapi/proxy/ppb_x509_certificate_private_proxy.h"
|
| #include "ppapi/proxy/printing_resource.h"
|
| #include "ppapi/proxy/talk_resource.h"
|
| +#include "ppapi/proxy/truetype_font_resource.h"
|
| #include "ppapi/proxy/udp_socket_private_resource.h"
|
| #include "ppapi/proxy/url_request_info_resource.h"
|
| #include "ppapi/proxy/url_response_info_resource.h"
|
| @@ -143,6 +144,14 @@ PP_Resource ResourceCreationProxy::CreateResourceArray(
|
| return object->GetReference();
|
| }
|
|
|
| +PP_Resource ResourceCreationProxy::CreateTrueTypeFont(
|
| + PP_Instance instance,
|
| + const PP_TrueTypeFontDesc_Dev* desc) {
|
| + return (new TrueTypeFontResource(GetConnection(),
|
| + instance, desc))->GetReference();
|
| +
|
| +}
|
| +
|
| PP_Resource ResourceCreationProxy::CreateURLLoader(PP_Instance instance) {
|
| return PPB_URLLoader_Proxy::CreateProxyResource(instance);
|
| }
|
|
|