| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_SYS_INFO_H_ | 5 #ifndef BASE_SYS_INFO_H_ |
| 6 #define BASE_SYS_INFO_H_ | 6 #define BASE_SYS_INFO_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 // Return the number of megabytes of available virtual memory, or zero if it | 41 // Return the number of megabytes of available virtual memory, or zero if it |
| 42 // is unlimited. | 42 // is unlimited. |
| 43 static int AmountOfVirtualMemoryMB() { | 43 static int AmountOfVirtualMemoryMB() { |
| 44 return static_cast<int>(AmountOfVirtualMemory() / 1024 / 1024); | 44 return static_cast<int>(AmountOfVirtualMemory() / 1024 / 1024); |
| 45 } | 45 } |
| 46 | 46 |
| 47 // Return the available disk space in bytes on the volume containing |path|, | 47 // Return the available disk space in bytes on the volume containing |path|, |
| 48 // or -1 on failure. | 48 // or -1 on failure. |
| 49 static int64 AmountOfFreeDiskSpace(const FilePath& path); | 49 static int64 AmountOfFreeDiskSpace(const FilePath& path); |
| 50 | 50 |
| 51 // Returns system uptime in milliseconds. | 51 // Returns system uptime. |
| 52 static int64 Uptime(); | 52 static TimeDelta Uptime(); |
| 53 | 53 |
| 54 // Returns a descriptive string for the current machine model or an empty | 54 // Returns a descriptive string for the current machine model or an empty |
| 55 // string if the machine model is unknown or an error occured. | 55 // string if the machine model is unknown or an error occured. |
| 56 // e.g. "MacPro1,1" on Mac, or "Nexus 5" on Android. Only implemented on OS X, | 56 // e.g. "MacPro1,1" on Mac, or "Nexus 5" on Android. Only implemented on OS X, |
| 57 // Android, and Chrome OS. This returns an empty string on other platforms. | 57 // Android, and Chrome OS. This returns an empty string on other platforms. |
| 58 static std::string HardwareModelName(); | 58 static std::string HardwareModelName(); |
| 59 | 59 |
| 60 // Returns the name of the host operating system. | 60 // Returns the name of the host operating system. |
| 61 static std::string OperatingSystemName(); | 61 static std::string OperatingSystemName(); |
| 62 | 62 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 135 |
| 136 // Returns true if this is a low-end device. | 136 // Returns true if this is a low-end device. |
| 137 // Low-end device refers to devices having less than 512M memory in the | 137 // Low-end device refers to devices having less than 512M memory in the |
| 138 // current implementation. | 138 // current implementation. |
| 139 static bool IsLowEndDevice(); | 139 static bool IsLowEndDevice(); |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 } // namespace base | 142 } // namespace base |
| 143 | 143 |
| 144 #endif // BASE_SYS_INFO_H_ | 144 #endif // BASE_SYS_INFO_H_ |
| OLD | NEW |