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

Unified Diff: webrtc/base/macutils.cc

Issue 2117823002: mac: Make GetOSVersion() private to a cc file. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 months 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/macutils.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/macutils.cc
diff --git a/webrtc/base/macutils.cc b/webrtc/base/macutils.cc
index 74b49199647eea2bddc1ea9cd919f142aad5abea..72ca5cb3498c6eaaf09acc72b68c822fcc691c29 100644
--- a/webrtc/base/macutils.cc
+++ b/webrtc/base/macutils.cc
@@ -83,7 +83,7 @@ static bool GetGestalt(OSType ostype, int* value) {
return false;
}
-bool GetOSVersion(int* major, int* minor, int* bugfix) {
+static bool GetOSVersion(int* major, int* minor, int* bugfix) {
ASSERT(major && minor && bugfix);
if (!GetGestalt(gestaltSystemVersion, major)) {
return false;
« no previous file with comments | « webrtc/base/macutils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698