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

Unified Diff: chrome/common/omaha_query_params.cc

Issue 14211005: [MIPS] Add "mipsel" to kArch in OmahaQueryParams (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/omaha_query_params.cc
diff --git a/chrome/common/omaha_query_params.cc b/chrome/common/omaha_query_params.cc
index 482e8c978f2ab21771b75f6837c52f45dcdc1581..3c853083eea674b950954d68c024efb3a89cf1b2 100644
--- a/chrome/common/omaha_query_params.cc
+++ b/chrome/common/omaha_query_params.cc
@@ -39,6 +39,8 @@ const char kArch[] =
"x86";
#elif defined(__arm__)
"arm";
+#elif defined(__mips__)
+ "mipsel";
asargent_no_longer_on_chrome 2013/04/18 21:39:35 Is it intended that this differs from the value be
petarj 2013/04/18 23:39:17 Yes, naming scheme for MIPS was discussed previous
#else
#error "unknown arch"
#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