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

Unified Diff: chrome/browser/ui/webui/version_ui.cc

Issue 2751773002: Add Google Play services info to chrome://version (Closed)
Patch Set: fix indentation Created 3 years, 9 months 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/ui/webui/version_ui.cc
diff --git a/chrome/browser/ui/webui/version_ui.cc b/chrome/browser/ui/webui/version_ui.cc
index 6d8d0cece2c9467d31cdac454188b2bb9b929b4b..efdde1cbad6dc897cd8037a496e856bc840383b7 100644
--- a/chrome/browser/ui/webui/version_ui.cc
+++ b/chrome/browser/ui/webui/version_ui.cc
@@ -103,6 +103,9 @@ WebUIDataSource* CreateVersionUIDataSource() {
#if defined(OS_ANDROID)
html_source->AddString(version_ui::kOSVersion,
AndroidAboutAppInfo::GetOsInfo());
+ html_source->AddLocalizedString(version_ui::kGmsName, IDS_VERSION_UI_GMS);
+ html_source->AddString(version_ui::kGmsVersion,
+ AndroidAboutAppInfo::GetGmsInfo());
#else
html_source->AddString(version_ui::kFlashPlugin, "Flash");
// Note that the Flash version is retrieve asynchronously and returned in
« no previous file with comments | « chrome/browser/ui/android/android_about_app_info.cc ('k') | components/version_ui/resources/about_version.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698