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

Unified Diff: content/test/test_renderer_host.cc

Issue 10082021: TabContents -> WebContentsImpl, part 13. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/test/test_renderer_host.cc
diff --git a/content/test/test_renderer_host.cc b/content/test/test_renderer_host.cc
index 2185678c5e847bec3e55334d6f84ab7bf3fd3631..d65443973ca0a53e0319b1d5a582258950709d7b 100644
--- a/content/test/test_renderer_host.cc
+++ b/content/test/test_renderer_host.cc
@@ -102,9 +102,9 @@ void RenderViewHostTester::EnableAccessibilityUpdatedNotifications(
// static
RenderViewHost* RenderViewHostTester::GetPendingForController(
NavigationController* controller) {
- TabContents* tab_contents = static_cast<TabContents*>(
+ WebContentsImpl* web_contents = static_cast<WebContentsImpl*>(
controller->GetWebContents());
- return tab_contents->GetRenderManagerForTesting()->pending_render_view_host();
+ return web_contents->GetRenderManagerForTesting()->pending_render_view_host();
}
// static

Powered by Google App Engine
This is Rietveld 408576698