Index: chrome/common/chrome_version_info_win.cc |
diff --git a/chrome/common/chrome_version_info_win.cc b/chrome/common/chrome_version_info_win.cc |
index 01b8e47c8a8d882b7b3ba706093a7211bcfef9d1..7b3a6376cd7119da1db1451b6196c194c966ee11 100644 |
--- a/chrome/common/chrome_version_info_win.cc |
+++ b/chrome/common/chrome_version_info_win.cc |
@@ -25,10 +25,17 @@ std::string VersionInfo::GetVersionStringModifier() { |
GoogleUpdateSettings::GetChromeChannelAndModifiers(is_system_install, |
&channel); |
} |
+#if defined(USE_AURA) |
+ channel += L" Aura"; |
+#endif |
return UTF16ToASCII(channel); |
#else |
+#if defined(USE_AURA) |
jam
2013/04/08 15:32:09
do you really need to change the chromium code pat
|
+ return "Aura"; |
+#else |
return std::string(); |
#endif |
+#endif |
} |
// static |