summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-08 18:05:02 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-08 18:05:02 +0000
commit4926eb427dc3fa4420458a26e9174d8ec85f3e83 (patch)
tree593b1fba11b3f8bdb10c6a9c7497152452f5a1d4
parentbd6355432b74ec3395c0119fbe3c907f4e71ce10 (diff)
downloadchromium_src-4926eb427dc3fa4420458a26e9174d8ec85f3e83.zip
chromium_src-4926eb427dc3fa4420458a26e9174d8ec85f3e83.tar.gz
chromium_src-4926eb427dc3fa4420458a26e9174d8ec85f3e83.tar.bz2
add 'Aura' to version if USE_AURA on windows
R=cpu@chromium.org BUG= Review URL: https://codereview.chromium.org/13730011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192832 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/common/chrome_version_info_win.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/chrome_version_info_win.cc b/chrome/common/chrome_version_info_win.cc
index 01b8e47..5eda30e 100644
--- a/chrome/common/chrome_version_info_win.cc
+++ b/chrome/common/chrome_version_info_win.cc
@@ -25,6 +25,9 @@ std::string VersionInfo::GetVersionStringModifier() {
GoogleUpdateSettings::GetChromeChannelAndModifiers(is_system_install,
&channel);
}
+#if defined(USE_AURA)
+ channel += L" Aura";
+#endif
return UTF16ToASCII(channel);
#else
return std::string();