diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-16 01:58:21 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-16 01:58:21 +0000 |
commit | 0b6a4fb3b80e59071d81cc4bc5c2eb619c513438 (patch) | |
tree | 2773f4a675c7474c61dfb1725add3b9522c7430e /base/sys_info.h | |
parent | e3eb5bf8517e45d3604bd3c886203d397b308521 (diff) | |
download | chromium_src-0b6a4fb3b80e59071d81cc4bc5c2eb619c513438.zip chromium_src-0b6a4fb3b80e59071d81cc4bc5c2eb619c513438.tar.gz chromium_src-0b6a4fb3b80e59071d81cc4bc5c2eb619c513438.tar.bz2 |
Cleanup: Rename to base::SysInfo::CPUArchitecture() to OperatingSystemArchitecture().
Review URL: https://chromiumcodereview.appspot.com/11140015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162041 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/sys_info.h')
-rw-r--r-- | base/sys_info.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/base/sys_info.h b/base/sys_info.h index 475c5a8..e1122b5 100644 --- a/base/sys_info.h +++ b/base/sys_info.h @@ -53,8 +53,7 @@ class BASE_EXPORT SysInfo { // Exact return value may differ across platforms. // e.g. a 32-bit x86 kernel on a 64-bit capable CPU will return "x86", // whereas a x86-64 kernel on the same CPU will return "x86_64" - // TODO(thestig) Rename this to OperatingSystemArchitecture(). - static std::string CPUArchitecture(); + static std::string OperatingSystemArchitecture(); // Avoid using this. Use base/cpu.h to get information about the CPU instead. // http://crbug.com/148884 |