| Index: webkit/plugins/ppapi/resource_creation_impl.cc
|
| diff --git a/webkit/plugins/ppapi/resource_creation_impl.cc b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| index 7009f0c88496afe2dbd9af48dad2fc55b669c221..361a2736241cac24a440301fb37a0b0449874d49 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -143,6 +143,13 @@ PP_Resource ResourceCreationImpl::CreateFlashTCPSocket(
|
| return 0;
|
| }
|
|
|
| +PP_Resource ResourceCreationImpl::CreateFlashUDPSocket(
|
| + PP_Instance instance,
|
| + int32_t family) {
|
| + // Creating UDP socket resource at the renderer side is not supported.
|
| + return 0;
|
| +}
|
| +
|
| PP_Resource ResourceCreationImpl::CreateFontObject(
|
| PP_Instance instance,
|
| const PP_FontDescription_Dev* description) {
|
|
|