Commit 0ac47655 authored by wfh@chromium.org's avatar wfh@chromium.org

Add "64-bit" to Chrome's 'about' page.

Finding whether you are running 64-bit or 32-bit is proving tricky for users
since the chrome://version page is not linked anywhere.

This adds "64-bit" string to the chrome://chrome page for 64-bit builds.

BUG=381246

Review URL: https://codereview.chromium.org/326773003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276592 0039d316-1c4b-4281-b951-d872f2087c98
parent 714e8c22
...@@ -79,6 +79,10 @@ base::string16 BuildBrowserVersionString() { ...@@ -79,6 +79,10 @@ base::string16 BuildBrowserVersionString() {
browser_version += ")"; browser_version += ")";
#endif #endif
#if defined(ARCH_CPU_64_BITS)
browser_version += " (64-bit)";
#endif
return base::UTF8ToUTF16(browser_version); return base::UTF8ToUTF16(browser_version);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment