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

Unified Diff: content/renderer/renderer_webapplicationcachehost_impl.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
« no previous file with comments | « content/renderer/renderer_main.cc ('k') | content/renderer/renderer_webcookiejar_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_webapplicationcachehost_impl.cc
===================================================================
--- content/renderer/renderer_webapplicationcachehost_impl.cc (revision 104358)
+++ content/renderer/renderer_webapplicationcachehost_impl.cc (working copy)
@@ -5,7 +5,7 @@
#include "content/renderer/renderer_webapplicationcachehost_impl.h"
#include "content/common/view_messages.h"
-#include "content/renderer/render_thread.h"
+#include "content/renderer/render_thread_impl.h"
#include "content/renderer/render_view.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
@@ -38,14 +38,14 @@
void RendererWebApplicationCacheHostImpl::OnContentBlocked(
const GURL& manifest_url) {
- RenderThread::current()->Send(new ViewHostMsg_AppCacheAccessed(
+ RenderThreadImpl::current()->Send(new ViewHostMsg_AppCacheAccessed(
routing_id_, manifest_url, true));
}
void RendererWebApplicationCacheHostImpl::OnCacheSelected(
const appcache::AppCacheInfo& info) {
if (!info.manifest_url.is_empty()) {
- RenderThread::current()->Send(new ViewHostMsg_AppCacheAccessed(
+ RenderThreadImpl::current()->Send(new ViewHostMsg_AppCacheAccessed(
routing_id_, info.manifest_url, false));
}
WebApplicationCacheHostImpl::OnCacheSelected(info);
@@ -53,5 +53,5 @@
RenderView* RendererWebApplicationCacheHostImpl::GetRenderView() {
return static_cast<RenderView*>
- (RenderThread::current()->ResolveRoute(routing_id_));
+ (RenderThreadImpl::current()->ResolveRoute(routing_id_));
}
« no previous file with comments | « content/renderer/renderer_main.cc ('k') | content/renderer/renderer_webcookiejar_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698