Index: chrome/browser/sync/sync_ui_util.cc |
diff --git a/chrome/browser/sync/sync_ui_util.cc b/chrome/browser/sync/sync_ui_util.cc |
index 7264b48addc47d9d5180c074389d9cfa0e5baca4..8bea9b168b5c1ea895d79f701da78ed8ba017afd 100644 |
--- a/chrome/browser/sync/sync_ui_util.cc |
+++ b/chrome/browser/sync/sync_ui_util.cc |
@@ -18,6 +18,7 @@ |
#include "chrome/browser/ui/browser.h" |
#include "chrome/browser/ui/browser_window.h" |
#include "chrome/common/chrome_switches.h" |
+#include "chrome/common/chrome_version_info.h" |
#include "chrome/common/net/gaia/google_service_auth_error.h" |
#include "chrome/common/url_constants.h" |
#include "grit/browser_resources.h" |
@@ -491,6 +492,10 @@ void ConstructAboutInformation(ProfileSyncService* service, |
ProfileSyncService::BuildSyncStatusSummaryText( |
full_status.summary)); |
+ chrome::VersionInfo chrome_version; |
+ strings->SetString("version", chrome_version.Name() + " " + |
akalin
2011/11/17 02:35:02
Does this have more information than the user agen
Nicolas Zea
2011/11/17 03:59:16
Hmm, wasn't aware of that. Interestingly, sync_bac
|
+ chrome_version.Version() + " (" + chrome_version.OSType() + ") " + |
+ chrome_version.GetVersionStringModifier()); |
strings->Set("authenticated", |
new base::FundamentalValue(full_status.authenticated)); |
strings->SetString("auth_problem", |