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

Unified Diff: ppapi/proxy/ppb_host_resolver_private_proxy.cc

Issue 11299147: Pepper proxy: make the browser sender handle the proxy lock properly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/ppb_host_resolver_private_proxy.cc
diff --git a/ppapi/proxy/ppb_host_resolver_private_proxy.cc b/ppapi/proxy/ppb_host_resolver_private_proxy.cc
index da73c09ea04b28c63266434c1515e31efe15cd36..20be2c32ecdbe3d0d96ff5c473e8bc4c20f3f02c 100644
--- a/ppapi/proxy/ppb_host_resolver_private_proxy.cc
+++ b/ppapi/proxy/ppb_host_resolver_private_proxy.cc
@@ -10,7 +10,6 @@
#include "base/logging.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/plugin_globals.h"
-#include "ppapi/proxy/plugin_proxy_delegate.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/shared_impl/host_resource.h"
@@ -65,7 +64,7 @@ void HostResolver::SendResolve(const HostPortPair& host_port,
}
void HostResolver::SendToBrowser(IPC::Message* msg) {
- PluginGlobals::Get()->plugin_proxy_delegate()->SendToBrowser(msg);
+ PluginGlobals::Get()->GetBrowserSender()->Send(msg);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698