diff options
Diffstat (limited to 'chrome/test/base')
-rw-r--r-- | chrome/test/base/browser_with_test_window_test.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/test/base/browser_with_test_window_test.cc b/chrome/test/base/browser_with_test_window_test.cc index 80bb90c..e760a4d 100644 --- a/chrome/test/base/browser_with_test_window_test.cc +++ b/chrome/test/base/browser_with_test_window_test.cc @@ -95,15 +95,15 @@ void BrowserWithTestWindowTest::CommitPendingLoad( // just have a standalong pending_entry that isn't in the list already). if (controller->pending_entry_index() >= 0) { test_rvh->SendNavigateWithTransition( - controller->pending_entry()->page_id(), - controller->pending_entry()->url(), - controller->pending_entry()->transition_type()); + controller->pending_entry()->GetPageID(), + controller->pending_entry()->GetURL(), + controller->pending_entry()->GetTransitionType()); } else { test_rvh->SendNavigateWithTransition( controller->tab_contents()-> GetMaxPageIDForSiteInstance(test_rvh->site_instance()) + 1, - controller->pending_entry()->url(), - controller->pending_entry()->transition_type()); + controller->pending_entry()->GetURL(), + controller->pending_entry()->GetTransitionType()); } // Simulate the SwapOut_ACK that fires if you commit a cross-site navigation |