Index: content/browser/web_contents/navigation_controller_impl_unittest.cc |
diff --git a/content/browser/web_contents/navigation_controller_impl_unittest.cc b/content/browser/web_contents/navigation_controller_impl_unittest.cc |
index c86e3a5dc4eb9be3eca162608999d8daf199c4ed..18309113b70fb86cb02bddf4ba58800a8e15e3a2 100644 |
--- a/content/browser/web_contents/navigation_controller_impl_unittest.cc |
+++ b/content/browser/web_contents/navigation_controller_impl_unittest.cc |
@@ -3767,7 +3767,7 @@ class NavigationControllerHistoryTest : public NavigationControllerTest { |
controller.session_id(), 0); |
controller.SetWindowID(window_id); |
- session_helper_.set_service(service); |
+ session_helper_.SetService(service); |
} |
virtual void TearDown() { |
@@ -3795,12 +3795,12 @@ class NavigationControllerHistoryTest : public NavigationControllerTest { |
// Deletes the current profile manager and creates a new one. Indirectly this |
// shuts down the history database and reopens it. |
void ReopenDatabase() { |
- session_helper_.set_service(NULL); |
+ session_helper_.SetService(NULL); |
SessionServiceFactory::SetForTestProfile(profile(), NULL); |
SessionService* service = new SessionService(profile()); |
SessionServiceFactory::SetForTestProfile(profile(), service); |
- session_helper_.set_service(service); |
+ session_helper_.SetService(service); |
} |
void GetLastSession() { |