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

Unified Diff: base/linux_util.cc

Issue 8479002: Differentiate TOUCH_UI builds in crash reporting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/linux_util.cc
diff --git a/base/linux_util.cc b/base/linux_util.cc
index 67514696c5c2dc4f3244b2b060aed6760e6429fd..757731871ce6e55e91ec224f01ddcfbc92080f84 100644
--- a/base/linux_util.cc
+++ b/base/linux_util.cc
@@ -132,7 +132,11 @@ static const int kDistroSize = 128 + 1;
// crash, the crash handler code will send this in the crash dump.
char g_linux_distro[kDistroSize] =
#if defined(OS_CHROMEOS)
+#if defined(TOUCH_UI)
Nico 2011/11/09 20:09:05 Would #if defined(TOUCH_UI) #elif defined(OS_CHRO
Rick Byers 2011/11/09 20:17:55 That wouldn't really be correct - we can have TOUC
Nico 2011/11/09 20:20:42 I like that a bit better, but it's fine either way
+ "CrOS Touch";
+#else
"CrOS";
+#endif
#else // if defined(OS_LINUX)
"Unknown";
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698