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

Unified Diff: chrome/browser/navigation_controller_unittest.cc

Issue 62044: Make the RenderViewHostFactory a global. This prevents us from having to pass... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/browser/external_tab_container.cc ('k') | chrome/browser/renderer_host/render_view_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/navigation_controller_unittest.cc
===================================================================
--- chrome/browser/navigation_controller_unittest.cc (revision 13137)
+++ chrome/browser/navigation_controller_unittest.cc (working copy)
@@ -1063,7 +1063,7 @@
ASCIIToUTF16("Title"), "state",
PageTransition::LINK));
NavigationController* our_controller =
- new NavigationController(profile(), navigations, 0, &rvh_factory_);
+ new NavigationController(profile(), navigations, 0);
our_controller->GoToIndex(0);
// We should now have one entry, and it should be "pending".
@@ -1355,9 +1355,6 @@
EXPECT_EQ(controller()->GetLastCommittedEntryIndex(), 0);
}
-/* TODO(brettw) These test pass on my local machine but fail on the buildbot
- cleaning up the directory after they run. This should be fixed.
-
// A basic test case. Navigates to a single url, and make sure the history
// db matches.
TEST_F(NavigationControllerHistoryTest, Basic) {
@@ -1374,6 +1371,9 @@
session_helper_.AssertNavigationEquals(nav1, windows_[0]->tabs[0]->navigations[0]);
}
+/* TODO(brettw) These test pass on my local machine but fail on the buildbot
+ cleaning up the directory after they run. This should be fixed.
+
// Navigates to three urls, then goes back and make sure the history database
// is in sync.
TEST_F(NavigationControllerHistoryTest, NavigationThenBack) {
« no previous file with comments | « chrome/browser/external_tab_container.cc ('k') | chrome/browser/renderer_host/render_view_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698