Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Unified Diff: ppapi/proxy/dispatcher.h

Issue 8226009: Remove the proxy callback tracker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/proxy/dispatcher.h
diff --git a/ppapi/proxy/dispatcher.h b/ppapi/proxy/dispatcher.h
index a48cff7e7a29750a95f91e4b4d0624017326d579..aca1f784755748e2124d87a9731c8d5bffafb17e 100644
--- a/ppapi/proxy/dispatcher.h
+++ b/ppapi/proxy/dispatcher.h
@@ -14,7 +14,6 @@
#include "ipc/ipc_channel_proxy.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_module.h"
-#include "ppapi/proxy/callback_tracker.h"
#include "ppapi/proxy/proxy_channel.h"
#include "ppapi/proxy/interface_id.h"
#include "ppapi/proxy/interface_list.h"
@@ -83,10 +82,6 @@ class PPAPI_PROXY_EXPORT Dispatcher : public ProxyChannel {
// IPC::Channel::Listener implementation.
virtual bool OnMessageReceived(const IPC::Message& msg);
- CallbackTracker& callback_tracker() {
- return callback_tracker_;
- }
-
GetInterfaceFunc local_get_interface() const { return local_get_interface_; }
protected:
@@ -116,8 +111,6 @@ class PPAPI_PROXY_EXPORT Dispatcher : public ProxyChannel {
GetInterfaceFunc local_get_interface_;
- CallbackTracker callback_tracker_;
-
scoped_ptr<VarSerializationRules> serialization_rules_;
DISALLOW_COPY_AND_ASSIGN(Dispatcher);

Powered by Google App Engine
This is Rietveld 408576698