Index: chrome/browser/sync/test/integration/sync_auth_test.cc |
diff --git a/chrome/browser/sync/test/integration/sync_auth_test.cc b/chrome/browser/sync/test/integration/sync_auth_test.cc |
index 0c625e9a507acbcaa39ac11f725298790c608c37..5cfcdf808506c2ee65da5dcbd622d6a6aa4ec58c 100644 |
--- a/chrome/browser/sync/test/integration/sync_auth_test.cc |
+++ b/chrome/browser/sync/test/integration/sync_auth_test.cc |
@@ -247,7 +247,7 @@ IN_PROC_BROWSER_TEST_F(SyncAuthTest, FailInitialSetupWithPersistentError) { |
net::HTTP_BAD_REQUEST, |
net::URLRequestStatus::SUCCESS); |
ASSERT_FALSE(GetClient(0)->SetupSync()); |
- ASSERT_FALSE(GetSyncService((0))->SyncActive()); |
+ ASSERT_FALSE(GetSyncService((0))->IsSyncActive()); |
ASSERT_EQ(GoogleServiceAuthError::INVALID_GAIA_CREDENTIALS, |
GetSyncService((0))->GetAuthError().state()); |
} |
@@ -264,7 +264,7 @@ IN_PROC_BROWSER_TEST_F(SyncAuthTest, RetryInitialSetupWithTransientError) { |
net::HTTP_INTERNAL_SERVER_ERROR, |
net::URLRequestStatus::SUCCESS); |
ASSERT_FALSE(GetClient(0)->SetupSync()); |
- ASSERT_FALSE(GetSyncService((0))->SyncActive()); |
+ ASSERT_FALSE(GetSyncService((0))->IsSyncActive()); |
ASSERT_TRUE( |
GetSyncService((0))->IsRetryingAccessTokenFetchForTest()); |
} |