| Index: content/browser/tab_contents/render_view_host_manager_unittest.cc
|
| diff --git a/content/browser/tab_contents/render_view_host_manager_unittest.cc b/content/browser/tab_contents/render_view_host_manager_unittest.cc
|
| index 526151645be3b8601c642a759030ba4bce05b6d6..6030864939d8475584ab9d5b236618808bdaf636 100644
|
| --- a/content/browser/tab_contents/render_view_host_manager_unittest.cc
|
| +++ b/content/browser/tab_contents/render_view_host_manager_unittest.cc
|
| @@ -168,7 +168,7 @@ TEST_F(RenderViewHostManagerTest, NewTabPageProcesses) {
|
| // Load the two URLs in the second tab. Note that the first navigation creates
|
| // a RVH that's not pending (since there is no cross-site transition), so
|
| // we use the committed one.
|
| - contents2.GetController().LoadURL(
|
| + contents2.controller().LoadURL(
|
| kNtpUrl, content::Referrer(), content::PAGE_TRANSITION_LINK,
|
| std::string());
|
| TestRenderViewHost* ntp_rvh2 = static_cast<TestRenderViewHost*>(
|
| @@ -178,7 +178,7 @@ TEST_F(RenderViewHostManagerTest, NewTabPageProcesses) {
|
|
|
| // The second one is the opposite, creating a cross-site transition and
|
| // requiring a beforeunload ack.
|
| - contents2.GetController().LoadURL(
|
| + contents2.controller().LoadURL(
|
| kDestUrl, content::Referrer(), content::PAGE_TRANSITION_LINK,
|
| std::string());
|
| EXPECT_TRUE(contents2.cross_navigation_pending());
|
| @@ -199,7 +199,7 @@ TEST_F(RenderViewHostManagerTest, NewTabPageProcesses) {
|
| // SiteInstance.
|
| NavigateActiveAndCommit(kNtpUrl);
|
|
|
| - contents2.GetController().LoadURL(
|
| + contents2.controller().LoadURL(
|
| kNtpUrl, content::Referrer(), content::PAGE_TRANSITION_LINK,
|
| std::string());
|
| dest_rvh2->SendShouldCloseACK(true);
|
| @@ -292,7 +292,7 @@ TEST_F(RenderViewHostManagerTest, Navigate) {
|
| TestTabContents tab_contents(browser_context(), instance);
|
| notifications.ListenFor(
|
| content::NOTIFICATION_RENDER_VIEW_HOST_CHANGED,
|
| - content::Source<NavigationController>(&tab_contents.GetController()));
|
| + content::Source<NavigationController>(&tab_contents.controller()));
|
|
|
| // Create.
|
| RenderViewHostManager manager(&tab_contents, &tab_contents);
|
| @@ -380,7 +380,7 @@ TEST_F(RenderViewHostManagerTest, NavigateWithEarlyReNavigation) {
|
| TestTabContents tab_contents(browser_context(), instance);
|
| notifications.ListenFor(
|
| content::NOTIFICATION_RENDER_VIEW_HOST_CHANGED,
|
| - content::Source<NavigationController>(&tab_contents.GetController()));
|
| + content::Source<NavigationController>(&tab_contents.controller()));
|
|
|
| // Create.
|
| RenderViewHostManager manager(&tab_contents, &tab_contents);
|
| @@ -610,7 +610,7 @@ TEST_F(RenderViewHostManagerTest, PageDoesBackAndReload) {
|
| EXPECT_EQ(evil_rvh, contents()->render_manager_for_testing()->current_host());
|
|
|
| // Also we should not have a pending navigation entry.
|
| - NavigationEntry* entry = contents()->GetController().GetActiveEntry();
|
| + NavigationEntry* entry = contents()->controller().GetActiveEntry();
|
| ASSERT_TRUE(entry != NULL);
|
| EXPECT_EQ(kUrl2, entry->url());
|
| }
|
|
|