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

Unified Diff: content/renderer/webplugin_delegate_proxy.cc

Issue 8171015: Rename RenderThread to RenderThreadImpl (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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: content/renderer/webplugin_delegate_proxy.cc
===================================================================
--- content/renderer/webplugin_delegate_proxy.cc (revision 104358)
+++ content/renderer/webplugin_delegate_proxy.cc (working copy)
@@ -31,7 +31,7 @@
#include "content/public/renderer/content_renderer_client.h"
#include "content/renderer/gpu/command_buffer_proxy.h"
#include "content/renderer/plugin_channel_host.h"
-#include "content/renderer/render_thread.h"
+#include "content/renderer/render_thread_impl.h"
#include "content/renderer/render_view.h"
#include "ipc/ipc_channel_handle.h"
#include "net/base/mime_util.h"
@@ -285,7 +285,7 @@
webkit::npapi::WebPlugin* plugin,
bool load_manually) {
IPC::ChannelHandle channel_handle;
- if (!RenderThread::current()->Send(new ViewHostMsg_OpenChannelToPlugin(
+ if (!RenderThreadImpl::current()->Send(new ViewHostMsg_OpenChannelToPlugin(
render_view_->routing_id(), url, page_url_, mime_type_,
&channel_handle, &info_))) {
return false;
@@ -652,7 +652,7 @@
#if defined(OS_MACOSX)
TransportDIB::Handle handle;
IPC::Message* msg = new ViewHostMsg_AllocTransportDIB(size, false, &handle);
- if (!RenderThread::current()->Send(msg))
+ if (!RenderThreadImpl::current()->Send(msg))
return false;
if (handle.fd < 0)
return false;
@@ -1148,7 +1148,7 @@
bool* result,
std::string* proxy_list) {
*result = false;
- RenderThread::current()->Send(
+ RenderThreadImpl::current()->Send(
new ViewHostMsg_ResolveProxy(url, result, proxy_list));
}
« no previous file with comments | « content/renderer/renderer_webstoragenamespace_impl.cc ('k') | content/renderer/websharedworkerrepository_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698