Index: chrome/browser/sync/about_sync_util.cc |
diff --git a/chrome/browser/sync/about_sync_util.cc b/chrome/browser/sync/about_sync_util.cc |
index 1b9d149658435e9815bf829bc252bf604bcbe762..bdf141137a8d428f01e6becda44b11b1f453a951 100644 |
--- a/chrome/browser/sync/about_sync_util.cc |
+++ b/chrome/browser/sync/about_sync_util.cc |
@@ -335,8 +335,11 @@ scoped_ptr<DictionaryValue> ConstructAboutInformation( |
} |
if (snapshot.is_initialized()) { |
- session_source.SetValue( |
- syncer::GetUpdatesSourceString(snapshot.source().updates_source)); |
+ if (snapshot.legacy_updates_source() != |
+ sync_pb::GetUpdatesCallerInfo::UNKNOWN) { |
+ session_source.SetValue( |
+ syncer::GetUpdatesSourceString(snapshot.legacy_updates_source())); |
+ } |
get_key_result.SetValue( |
GetSyncerErrorString( |
snapshot.model_neutral_state().last_get_key_result)); |