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

Unified Diff: ppapi/proxy/interface_proxy.cc

Issue 8226009: Remove the proxy callback tracker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: PostMessage define. 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/interface_proxy.cc
diff --git a/ppapi/proxy/interface_proxy.cc b/ppapi/proxy/interface_proxy.cc
index 913821a52ec202572da29a862e0d25bb9f14b27b..2de4803394415c69fd376aa370d9be06ed253fa1 100644
--- a/ppapi/proxy/interface_proxy.cc
+++ b/ppapi/proxy/interface_proxy.cc
@@ -21,14 +21,5 @@ bool InterfaceProxy::Send(IPC::Message* msg) {
return dispatcher_->Send(msg);
}
-uint32 InterfaceProxy::SendCallback(PP_CompletionCallback callback) {
- return dispatcher_->callback_tracker().SendCallback(callback);
-}
-
-PP_CompletionCallback InterfaceProxy::ReceiveCallback(
- uint32 serialized_callback) {
- return dispatcher_->callback_tracker().ReceiveCallback(serialized_callback);
-}
-
} // namespace proxy
} // namespace ppapi

Powered by Google App Engine
This is Rietveld 408576698