Index: ppapi/proxy/ppapi_proxy_test.cc |
diff --git a/ppapi/proxy/ppapi_proxy_test.cc b/ppapi/proxy/ppapi_proxy_test.cc |
index 19f41bbd5594738fccb901eb097d9d2d6b5b5a9f..2df72cc3e38d373cddc7fd09c638f485dfa58022 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 |