Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Unified Diff: webrtc/base/systeminfo.h

Issue 2584563004: Revert of Delete unused code from systeminfo. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/base/systeminfo.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/systeminfo.h
diff --git a/webrtc/base/systeminfo.h b/webrtc/base/systeminfo.h
new file mode 100644
index 0000000000000000000000000000000000000000..99d18b296001737948eb6e85d334dd3bd41ca17e
--- /dev/null
+++ b/webrtc/base/systeminfo.h
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2008 The WebRTC Project Authors. All rights reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#ifndef WEBRTC_BASE_SYSTEMINFO_H__
+#define WEBRTC_BASE_SYSTEMINFO_H__
+
+#include <string>
+
+#include "webrtc/base/basictypes.h"
+
+namespace rtc {
+
+class SystemInfo {
+ public:
+ enum Architecture {
+ SI_ARCH_UNKNOWN = -1,
+ SI_ARCH_X86 = 0,
+ SI_ARCH_X64 = 1,
+ SI_ARCH_ARM = 2
+ };
+
+ SystemInfo();
+
+ // The number of CPU Threads in the system.
+ static int GetMaxCpus();
+ // The number of CPU Threads currently available to this process.
+ static int GetCurCpus();
+ // Identity of the CPUs.
+ Architecture GetCpuArchitecture();
+ std::string GetCpuVendor();
+ // Total amount of physical memory, in bytes.
+ int64_t GetMemorySize();
+ // The model name of the machine, e.g. "MacBookAir1,1"
+ std::string GetMachineModel();
+
+ private:
+ static int logical_cpus_;
+};
+
+} // namespace rtc
+
+#endif // WEBRTC_BASE_SYSTEMINFO_H__
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/base/systeminfo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698