Index: webrtc/modules/utility/include/helpers_ios.h |
diff --git a/webrtc/modules/utility/include/helpers_ios.h b/webrtc/modules/utility/include/helpers_ios.h |
index a5a07ace17218d146d06559b85883c966875af06..d3f788fec30e9f1fc98032a340558fa298dc25c6 100644 |
--- a/webrtc/modules/utility/include/helpers_ios.h |
+++ b/webrtc/modules/utility/include/helpers_ios.h |
@@ -51,6 +51,23 @@ std::string GetDeviceType(); |
// Examples: "iPhone 5s (GSM)" and "iPhone 6 Plus". |
std::string GetDeviceName(); |
+// Returns the name of the process. Does not uniquely identify the process. |
+std::string GetProcessName(); |
+ |
+// Returns the identifier of the process (often called process ID). |
+int GetProcessID(); |
+ |
+// Returns a string containing the version of the operating system on which the |
+// process is executing. The string is string is human readable, localized, and |
+// is appropriate for displaying to the user. |
+std::string GetOSVersionString(); |
+ |
+// Returns the number of processing cores available on the device. |
+int GetProcessorCount(); |
+ |
+// Indicates whether Low Power Mode is enabled on the iOS device. |
+bool GetLowPowerModeEnabled(); |
+ |
} // namespace ios |
} // namespace webrtc |