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

Unified Diff: chrome/browser/sync/test/integration/profile_sync_service_harness.cc

Issue 2551023006: [Sync] SyncEngine 1.5: Fix all backend references in PSS. (Closed)
Patch Set: Created 4 years 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
Index: chrome/browser/sync/test/integration/profile_sync_service_harness.cc
diff --git a/chrome/browser/sync/test/integration/profile_sync_service_harness.cc b/chrome/browser/sync/test/integration/profile_sync_service_harness.cc
index 6a4b4ce228a660f6ded16d3e0067e16dae7ee69a..74ff18239fbceae2c20ba284f3e723881f3f30ad 100644
--- a/chrome/browser/sync/test/integration/profile_sync_service_harness.cc
+++ b/chrome/browser/sync/test/integration/profile_sync_service_harness.cc
@@ -55,7 +55,7 @@ class BackendInitializeChecker : public SingleClientStatusChangeChecker {
: SingleClientStatusChangeChecker(service) {}
bool IsExitConditionSatisfied() override {
- if (service()->IsBackendInitialized())
+ if (service()->IsEngineInitialized())
return true;
// Backend initialization is blocked by an auth error.
skym 2016/12/05 19:38:55 backend
maxbogue 2016/12/05 22:17:10 Done.
if (HasAuthError(service()))
@@ -252,7 +252,7 @@ bool ProfileSyncServiceHarness::AwaitBackendInitialization() {
return false;
}
- if (!service()->IsBackendInitialized()) {
+ if (!service()->IsEngineInitialized()) {
LOG(ERROR) << "Service backend not initialized.";
skym 2016/12/05 19:38:55 backend
maxbogue 2016/12/05 22:17:10 Done.
return false;
}

Powered by Google App Engine
This is Rietveld 408576698