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

Unified Diff: chrome/browser/sync/test/integration/sync_errors_test.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/sync_errors_test.cc
diff --git a/chrome/browser/sync/test/integration/sync_errors_test.cc b/chrome/browser/sync/test/integration/sync_errors_test.cc
index 76a77230b3ffac356ef0ae89636a043b0d8283be..7a29fdff7c2e99f2981f59698f00294dc0e32288 100644
--- a/chrome/browser/sync/test/integration/sync_errors_test.cc
+++ b/chrome/browser/sync/test/integration/sync_errors_test.cc
@@ -45,7 +45,7 @@ class SyncBackendStoppedChecker : public SingleClientStatusChangeChecker {
// StatusChangeChecker implementation.
bool IsExitConditionSatisfied() override {
- return !service()->IsBackendInitialized();
+ return !service()->IsEngineInitialized();
}
std::string GetDebugMessage() const override { return "Sync stopped"; }
};

Powered by Google App Engine
This is Rietveld 408576698