| 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:
|
|
|