From 645ef96b909147f0787f4afa53f39594cb78b211 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Fri, 21 Oct 2011 04:41:59 +0000 Subject: Remove the proxy callback tracker. This doesn't properly delete callbacks when the corresponding resource goes away. This can lead to leaks or crashes in the plugin when the callback is triggered unexpectedly. BUG=http://crbug.com/86279 Review URL: http://codereview.chromium.org/8226009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106677 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/proxy/interface_proxy.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'ppapi/proxy/interface_proxy.h') diff --git a/ppapi/proxy/interface_proxy.h b/ppapi/proxy/interface_proxy.h index b9891b9..a35c63d 100644 --- a/ppapi/proxy/interface_proxy.h +++ b/ppapi/proxy/interface_proxy.h @@ -60,9 +60,6 @@ class InterfaceProxy : public IPC::Channel::Listener, // dispatcher manages our lifetime. InterfaceProxy(Dispatcher* dispatcher); - uint32 SendCallback(PP_CompletionCallback callback); - PP_CompletionCallback ReceiveCallback(uint32 serialized_callback); - private: Dispatcher* dispatcher_; }; -- cgit v1.1