Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef BASE_SYS_UTILS_H_ | |
| 6 #define BASE_SYS_UTILS_H_ | |
| 7 | |
| 8 #include <stddef.h> | |
| 9 | |
| 10 #include "base/base_export.h" | |
| 11 | |
| 12 namespace base { | |
| 13 | |
| 14 class BASE_EXPORT SysUtils { | |
| 15 public: | |
| 16 // Returns true iff this is a low-end device. | |
| 17 static bool IsLowEndDevice(); | |
|
brettw
2014/06/11 21:02:40
When I suggested moving this to sys_info, I was ex
| |
| 18 | |
| 19 private: | |
| 20 SysUtils() {}; | |
| 21 }; | |
| 22 | |
| 23 } // namespace base | |
| 24 | |
| 25 #endif // BASE_SYS_UTILS_H_ | |
| OLD | NEW |