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

Unified Diff: chrome/browser/omaha_query_params/omaha_query_params.cc

Issue 218663003: Make ARM64 detection consistent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't touch "arm64" string Created 6 years, 9 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 | « build/build_config.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/omaha_query_params/omaha_query_params.cc
diff --git a/chrome/browser/omaha_query_params/omaha_query_params.cc b/chrome/browser/omaha_query_params/omaha_query_params.cc
index 78a5317b175d6152a7b13a4b13e966b8af6fc7dd..df4e6048fcce804e99dc4f30c18dc4891934b2a6 100644
--- a/chrome/browser/omaha_query_params/omaha_query_params.cc
+++ b/chrome/browser/omaha_query_params/omaha_query_params.cc
@@ -40,7 +40,7 @@ const char kArch[] =
"x86";
#elif defined(__arm__)
"arm";
-#elif defined(__arm64__)
+#elif defined(__aarch64__)
"arm64";
#elif defined(__mips__)
"mipsel";
« no previous file with comments | « build/build_config.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698