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

Unified Diff: content/test/test_navigation_observer.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 | « content/test/js_injection_ready_observer.h ('k') | content/test/test_web_contents_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_navigation_observer.cc
diff --git a/content/test/test_navigation_observer.cc b/content/test/test_navigation_observer.cc
index aadff92c3c3fa44ae4cc99fa63c0f0e2d147d234..6cd9fa8135bc3cfc66ec466e80ca6a01f47f5268 100644
--- a/content/test/test_navigation_observer.cc
+++ b/content/test/test_navigation_observer.cc
@@ -16,7 +16,7 @@
class TestNavigationObserver::RVHOSendJS
: public content::RenderViewHostObserver {
public:
- RVHOSendJS(RenderViewHost* render_view_host,
+ RVHOSendJS(content::RenderViewHost* render_view_host,
JsInjectionReadyObserver* js_injection_ready_observer)
: content::RenderViewHostObserver(render_view_host),
js_injection_ready_observer_(js_injection_ready_observer) {
@@ -113,7 +113,7 @@ void TestNavigationObserver::Observe(
break;
case content::NOTIFICATION_RENDER_VIEW_HOST_CREATED:
rvho_send_js_.reset(new RVHOSendJS(
- content::Source<RenderViewHost>(source).ptr(),
+ content::Source<content::RenderViewHost>(source).ptr(),
js_injection_ready_observer_));
break;
default:
« no previous file with comments | « content/test/js_injection_ready_observer.h ('k') | content/test/test_web_contents_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698