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

Unified Diff: chrome/common/chrome_version_info_posix.cc

Issue 237963002: linux_aura: Remove the 'a' badge. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix official build. Created 6 years, 8 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
« no previous file with comments | « chrome/browser/ui/views/toolbar/wrench_toolbar_button.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_version_info_posix.cc
diff --git a/chrome/common/chrome_version_info_posix.cc b/chrome/common/chrome_version_info_posix.cc
index a243b07416409bdd31ca637f5b175ec17c597fb2..98aa72f7eb5273fb6d7e2a7ac9536fc6b4ca9357 100644
--- a/chrome/common/chrome_version_info_posix.cc
+++ b/chrome/common/chrome_version_info_posix.cc
@@ -12,13 +12,8 @@ namespace chrome {
// static
std::string VersionInfo::GetVersionStringModifier() {
char* env = getenv("CHROME_VERSION_EXTRA");
- if (!env) {
- std::string modifier;
-#if defined(USE_AURA) && defined(OS_LINUX) && !defined(OS_CHROMEOS)
- modifier = "aura";
-#endif
- return modifier;
- }
+ if (!env)
+ return std::string();
std::string modifier(env);
#if defined(GOOGLE_CHROME_BUILD)
@@ -34,10 +29,6 @@ std::string VersionInfo::GetVersionStringModifier() {
}
#endif
-#if defined(USE_AURA) && defined(OS_LINUX) && !defined(OS_CHROMEOS)
- modifier += " aura";
-#endif
-
return modifier;
}
« no previous file with comments | « chrome/browser/ui/views/toolbar/wrench_toolbar_button.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698