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

Unified Diff: chrome/browser/tab_render_watcher.cc

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 8 years, 9 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 | « chrome/browser/tab_render_watcher.h ('k') | chrome/browser/tab_render_watcher_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_render_watcher.cc
diff --git a/chrome/browser/tab_render_watcher.cc b/chrome/browser/tab_render_watcher.cc
index 46ee3eea90e8a8d2c246df320db7dda72aa8e615..160199f4d02288eb04b2ab4b75311a8885858486 100644
--- a/chrome/browser/tab_render_watcher.cc
+++ b/chrome/browser/tab_render_watcher.cc
@@ -10,6 +10,7 @@
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
+using content::RenderWidgetHost;
using content::WebContents;
TabRenderWatcher::TabRenderWatcher(WebContents* tab, Delegate* delegate)
@@ -34,7 +35,7 @@ void TabRenderWatcher::Observe(int type,
content::NOTIFICATION_RENDER_WIDGET_HOST_DID_PAINT,
content::Source<RenderWidgetHost>(rwh));
delegate_->OnRenderHostCreated(
- content::Details<RenderViewHost>(details).ptr());
+ content::Details<content::RenderViewHost>(details).ptr());
break;
}
case content::NOTIFICATION_LOAD_COMPLETED_MAIN_FRAME:
« no previous file with comments | « chrome/browser/tab_render_watcher.h ('k') | chrome/browser/tab_render_watcher_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698