Chromium Code Reviews| Index: base/sys_info.cc |
| diff --git a/base/sys_info.cc b/base/sys_info.cc |
| index 0b3b317fc8bf2a92a72bcf2991af8da3470ac2b0..cb93480b9793ecde36dd33d447d17b35accc016c 100644 |
| --- a/base/sys_info.cc |
| +++ b/base/sys_info.cc |
| @@ -44,6 +44,12 @@ bool SysInfo::IsLowEndDevice() { |
| } |
| #endif |
| +#if !defined(OS_MACOSX) || defined(OS_IOS) |
| +std::string SysInfo::HardwareModelName() { |
| + return std::string(); |
| +} |
| +#endif |
| + |
| // static |
| int64 SysInfo::Uptime() { |
| // This code relies on an implementation detail of TimeTicks::Now() - that |