| Index: content/renderer/pepper/resource_creation_impl.cc
|
| diff --git a/content/renderer/pepper/resource_creation_impl.cc b/content/renderer/pepper/resource_creation_impl.cc
|
| index d9ed442aecd04f9f91f4ff626700d755adf9781c..79962a225dafe7b2bbfa0a3b9929fc0ece75e043 100644
|
| --- a/content/renderer/pepper/resource_creation_impl.cc
|
| +++ b/content/renderer/pepper/resource_creation_impl.cc
|
| @@ -18,12 +18,10 @@
|
| #include "ppapi/shared_impl/ppb_audio_shared.h"
|
| #include "ppapi/shared_impl/ppb_image_data_shared.h"
|
| #include "ppapi/shared_impl/ppb_input_event_shared.h"
|
| -#include "ppapi/shared_impl/ppb_resource_array_shared.h"
|
| #include "ppapi/shared_impl/var.h"
|
|
|
| using ppapi::InputEventData;
|
| using ppapi::PPB_InputEvent_Shared;
|
| -using ppapi::PPB_ResourceArray_Shared;
|
| using ppapi::StringVar;
|
|
|
| namespace content {
|
| @@ -235,15 +233,6 @@ PP_Resource ResourceCreationImpl::CreateTalk(PP_Instance /* instance */) {
|
| return 0; // Not supported in-process.
|
| }
|
|
|
| -PP_Resource ResourceCreationImpl::CreateResourceArray(
|
| - PP_Instance instance,
|
| - const PP_Resource elements[],
|
| - uint32_t size) {
|
| - PPB_ResourceArray_Shared* object = new PPB_ResourceArray_Shared(
|
| - ppapi::OBJECT_IS_IMPL, instance, elements, size);
|
| - return object->GetReference();
|
| -}
|
| -
|
| PP_Resource ResourceCreationImpl::CreateTCPServerSocketPrivate(
|
| PP_Instance instance) {
|
| return 0; // Not supported in-process.
|
|
|