| Index: ppapi/proxy/ppapi_proxy_test.cc
|
| diff --git a/ppapi/proxy/ppapi_proxy_test.cc b/ppapi/proxy/ppapi_proxy_test.cc
|
| index 9034d8fa75cd636069be3703b91e86858af72425..7b69a62588ee13664dbcf872bff32cce557131ee 100644
|
| --- a/ppapi/proxy/ppapi_proxy_test.cc
|
| +++ b/ppapi/proxy/ppapi_proxy_test.cc
|
| @@ -41,11 +41,6 @@ void SetReserveInstanceIDCallback(PP_Module module,
|
| // worry about Instance uniqueness in tests, so we can ignore the call.
|
| }
|
|
|
| -int32_t GetURLLoaderBufferedBytes(PP_Resource url_loader) {
|
| - NOTREACHED();
|
| - return 0;
|
| -}
|
| -
|
| void AddRefModule(PP_Module module) {}
|
| void ReleaseModule(PP_Module module) {}
|
| PP_Bool IsInModuleDestructor(PP_Module module) { return PP_FALSE; }
|
| @@ -54,7 +49,6 @@ PPB_Proxy_Private ppb_proxy_private = {
|
| &PluginCrashed,
|
| &GetInstanceForResource,
|
| &SetReserveInstanceIDCallback,
|
| - &GetURLLoaderBufferedBytes,
|
| &AddRefModule,
|
| &ReleaseModule,
|
| &IsInModuleDestructor
|
|
|