Index: chrome/browser/sync/sessions2/sessions_sync_manager.cc |
diff --git a/chrome/browser/sync/sessions2/sessions_sync_manager.cc b/chrome/browser/sync/sessions2/sessions_sync_manager.cc |
index 58be18634e106606c67f5347d09279471f31d3b4..9576952a71052c67d0eb5fe194d3cd61584a110d 100644 |
--- a/chrome/browser/sync/sessions2/sessions_sync_manager.cc |
+++ b/chrome/browser/sync/sessions2/sessions_sync_manager.cc |
@@ -488,7 +488,7 @@ syncer::SyncError SessionsSyncManager::ProcessSyncChanges( |
return syncer::SyncError(); |
} |
UpdateTrackerWithForeignSession( |
- session, it->sync_data().GetRemoteModifiedTime()); |
+ session, it->sync_data().remote().GetRemoteModifiedTime()); |
break; |
default: |
NOTREACHED() << "Processing sync changes failed, unknown change type."; |
@@ -541,7 +541,8 @@ bool SessionsSyncManager::InitFromSyncModel( |
if (tombstone.IsValid()) |
new_changes->push_back(tombstone); |
} else if (specifics.session_tag() != current_machine_tag()) { |
- UpdateTrackerWithForeignSession(specifics, data.GetRemoteModifiedTime()); |
+ UpdateTrackerWithForeignSession(specifics, |
+ data.remote().GetRemoteModifiedTime()); |
} else { |
// This is previously stored local session information. |
if (specifics.has_header() && !found_current_header) { |