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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/gsa/ContextReporter.java

Issue 2551023006: [Sync] SyncEngine 1.5: Fix all backend references in PSS. (Closed)
Patch Set: Fix Android. 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/precache/PrecacheLauncher.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/gsa/ContextReporter.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/gsa/ContextReporter.java b/chrome/android/java/src/org/chromium/chrome/browser/gsa/ContextReporter.java
index c40337ffecb05f4827c19f2ebed811977f252e24..394e0f4c7f7ad03b79b3b83c30acf23403a3e224 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/gsa/ContextReporter.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/gsa/ContextReporter.java
@@ -212,7 +212,7 @@ public class ContextReporter {
* Records an appropriate status via UMA given the current sync status.
*/
public static void reportSyncStatus(@Nullable ProfileSyncService syncService) {
- if (syncService == null || !syncService.isBackendInitialized()) {
+ if (syncService == null || !syncService.isEngineInitialized()) {
reportStatus(STATUS_SYNC_NOT_INITIALIZED);
} else if (!syncService.getActiveDataTypes().contains(ModelType.TYPED_URLS)) {
reportStatus(STATUS_SYNC_NOT_SYNCING_URLS);
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/precache/PrecacheLauncher.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698