diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-21 04:41:59 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-21 04:41:59 +0000 |
commit | 645ef96b909147f0787f4afa53f39594cb78b211 (patch) | |
tree | fe991fceecfb2b354bd8c096274beb14637fa2c1 /ppapi/proxy/interface_proxy.h | |
parent | 7610cede2a571dcf71b5012c8f77b7cc7f8124e5 (diff) | |
download | chromium_src-645ef96b909147f0787f4afa53f39594cb78b211.zip chromium_src-645ef96b909147f0787f4afa53f39594cb78b211.tar.gz chromium_src-645ef96b909147f0787f4afa53f39594cb78b211.tar.bz2 |
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
Diffstat (limited to 'ppapi/proxy/interface_proxy.h')
-rw-r--r-- | ppapi/proxy/interface_proxy.h | 3 |
1 files changed, 0 insertions, 3 deletions
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_; }; |