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

Unified Diff: content/renderer/pepper/ppb_tcp_socket_private_impl.cc

Issue 20987009: Rename PepperPluginDelegateImpl to PepperHelperImpl after getting rid of the PluginDelegate interfa… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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: content/renderer/pepper/ppb_tcp_socket_private_impl.cc
===================================================================
--- content/renderer/pepper/ppb_tcp_socket_private_impl.cc (revision 214411)
+++ content/renderer/pepper/ppb_tcp_socket_private_impl.cc (working copy)
@@ -6,7 +6,7 @@
#include "content/common/pepper_messages.h"
#include "content/renderer/pepper/host_globals.h"
-#include "content/renderer/pepper/pepper_plugin_delegate_impl.h"
+#include "content/renderer/pepper/pepper_helper_impl.h"
#include "content/renderer/pepper/pepper_plugin_instance_impl.h"
#include "content/renderer/pepper/resource_helper.h"
#include "content/renderer/render_thread_impl.h"
@@ -25,13 +25,13 @@
}
PP_Resource PPB_TCPSocket_Private_Impl::CreateResource(PP_Instance instance) {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(instance);
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(instance);
+ if (!helper)
return 0;
uint32 socket_id = 0;
- plugin_delegate->Send(new PpapiHostMsg_PPBTCPSocket_CreatePrivate(
- plugin_delegate->routing_id(), 0, &socket_id));
+ helper->Send(new PpapiHostMsg_PPBTCPSocket_CreatePrivate(
+ helper->routing_id(), 0, &socket_id));
if (!socket_id)
return 0;
@@ -43,8 +43,8 @@
uint32 socket_id,
const PP_NetAddress_Private& local_addr,
const PP_NetAddress_Private& remote_addr) {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(instance);
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(instance);
+ if (!helper)
return 0;
PPB_TCPSocket_Private_Impl* socket =
@@ -54,31 +54,31 @@
socket->local_addr_ = local_addr;
socket->remote_addr_ = remote_addr;
- plugin_delegate->RegisterTCPSocket(socket, socket_id);
+ helper->RegisterTCPSocket(socket, socket_id);
return socket->GetReference();
}
void PPB_TCPSocket_Private_Impl::SendConnect(const std::string& host,
uint16_t port) {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(pp_instance());
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(pp_instance());
+ if (!helper)
return;
- plugin_delegate->RegisterTCPSocket(this, socket_id_);
- plugin_delegate->Send(new PpapiHostMsg_PPBTCPSocket_Connect(
- plugin_delegate->routing_id(), socket_id_, host, port));
+ helper->RegisterTCPSocket(this, socket_id_);
+ helper->Send(new PpapiHostMsg_PPBTCPSocket_Connect(
+ helper->routing_id(), socket_id_, host, port));
}
void PPB_TCPSocket_Private_Impl::SendConnectWithNetAddress(
const PP_NetAddress_Private& addr) {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(pp_instance());
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(pp_instance());
+ if (!helper)
return;
- plugin_delegate->RegisterTCPSocket(this, socket_id_);
- plugin_delegate->Send(new PpapiHostMsg_PPBTCPSocket_ConnectWithNetAddress(
- plugin_delegate->routing_id(), socket_id_, addr));
+ helper->RegisterTCPSocket(this, socket_id_);
+ helper->Send(new PpapiHostMsg_PPBTCPSocket_ConnectWithNetAddress(
+ helper->routing_id(), socket_id_, addr));
}
void PPB_TCPSocket_Private_Impl::SendSSLHandshake(
@@ -86,59 +86,58 @@
uint16_t server_port,
const std::vector<std::vector<char> >& trusted_certs,
const std::vector<std::vector<char> >& untrusted_certs) {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(pp_instance());
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(pp_instance());
+ if (!helper)
return;
- plugin_delegate->Send(new PpapiHostMsg_PPBTCPSocket_SSLHandshake(
+ helper->Send(new PpapiHostMsg_PPBTCPSocket_SSLHandshake(
socket_id_, server_name, server_port, trusted_certs, untrusted_certs));
}
void PPB_TCPSocket_Private_Impl::SendRead(int32_t bytes_to_read) {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(pp_instance());
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(pp_instance());
+ if (!helper)
return;
- plugin_delegate->Send(new PpapiHostMsg_PPBTCPSocket_Read(
+ helper->Send(new PpapiHostMsg_PPBTCPSocket_Read(
socket_id_, bytes_to_read));
}
void PPB_TCPSocket_Private_Impl::SendWrite(const std::string& buffer) {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(pp_instance());
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(pp_instance());
+ if (!helper)
return;
- plugin_delegate->Send(new PpapiHostMsg_PPBTCPSocket_Write(
+ helper->Send(new PpapiHostMsg_PPBTCPSocket_Write(
socket_id_, buffer));
}
void PPB_TCPSocket_Private_Impl::SendDisconnect() {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(pp_instance());
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(pp_instance());
+ if (!helper)
return;
- plugin_delegate->Send(new PpapiHostMsg_PPBTCPSocket_Disconnect(socket_id_));
+ helper->Send(new PpapiHostMsg_PPBTCPSocket_Disconnect(socket_id_));
}
void PPB_TCPSocket_Private_Impl::SendSetOption(
PP_TCPSocket_Option name,
const ::ppapi::SocketOptionData& value) {
- PepperPluginDelegateImpl* plugin_delegate = GetPluginDelegate(pp_instance());
- if (!plugin_delegate)
+ PepperHelperImpl* helper = GetHelper(pp_instance());
+ if (!helper)
return;
- plugin_delegate->Send(new PpapiHostMsg_PPBTCPSocket_SetOption(
+ helper->Send(new PpapiHostMsg_PPBTCPSocket_SetOption(
socket_id_, name, value));
}
-PepperPluginDelegateImpl* PPB_TCPSocket_Private_Impl::GetPluginDelegate(
- PP_Instance instance) {
+PepperHelperImpl* PPB_TCPSocket_Private_Impl::GetHelper(PP_Instance instance) {
PepperPluginInstanceImpl* plugin_instance =
HostGlobals::Get()->GetInstance(instance);
if (!plugin_instance)
return NULL;
- return plugin_instance->delegate();
+ return plugin_instance->helper();
}
} // namespace content
« no previous file with comments | « content/renderer/pepper/ppb_tcp_socket_private_impl.h ('k') | content/renderer/pepper/ppb_video_decoder_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698