| Index: chrome/test/live_sync/live_sessions_sync_test.cc
|
| diff --git a/chrome/test/live_sync/live_sessions_sync_test.cc b/chrome/test/live_sync/live_sessions_sync_test.cc
|
| index 82b1caa7ae432a893e04aa5fb489f73e6c2c7d44..4b1045d8da3974778050674095d3c020b53ace05 100644
|
| --- a/chrome/test/live_sync/live_sessions_sync_test.cc
|
| +++ b/chrome/test/live_sync/live_sessions_sync_test.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/sessions/session_service.h"
|
| +#include "chrome/browser/sessions/session_service_factory.h"
|
| #include "chrome/browser/sync/profile_sync_service.h"
|
| #include "chrome/browser/sync/glue/session_model_associator.h"
|
| #include "chrome/test/ui_test_utils.h"
|
| @@ -104,7 +105,7 @@ LiveSessionsSyncTest::LiveSessionsSyncTest(TestType test_type)
|
| LiveSessionsSyncTest::~LiveSessionsSyncTest() {}
|
|
|
| SessionService* LiveSessionsSyncTest::GetSessionService(int index) {
|
| - return GetProfile(index)->GetSessionService();
|
| + return SessionServiceFactory::GetForProfile(GetProfile(index));
|
| }
|
|
|
| TestSessionService* LiveSessionsSyncTest::GetHelper(int index) {
|
|
|