Index: base/sys_info.cc |
diff --git a/base/sys_info.cc b/base/sys_info.cc |
index 0b3b317fc8bf2a92a72bcf2991af8da3470ac2b0..50c1f0a092fbcda36a95a19eaf1b0fcd08633dac 100644 |
--- a/base/sys_info.cc |
+++ b/base/sys_info.cc |
@@ -44,6 +44,13 @@ bool SysInfo::IsLowEndDevice() { |
} |
#endif |
+#if !defined(OS_MACOSX) |
+std::string SysInfo::HardwareModelName() { |
+ NOTIMPLEMENTED() << "HardwareModelName() not supported."; |
Alexei Svitkine (slow)
2014/11/05 15:47:21
I don't think it's worth having a NOTIMPLEMENTED()
|
+ return std::string(); |
+} |
+#endif |
+ |
// static |
int64 SysInfo::Uptime() { |
// This code relies on an implementation detail of TimeTicks::Now() - that |