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

Unified Diff: webrtc/base/macutils.cc

Issue 2114013002: mac: Remove unused GetQuickTimeVersion(). (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') | webrtc/base/macutils_unittest.cc » ('j') | 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..9678b629bbbbc4df90de50c8c56ccab72deb214a 100644
--- a/webrtc/base/macutils.cc
+++ b/webrtc/base/macutils.cc
@@ -129,18 +129,6 @@ MacOSVersionName GetOSVersionName() {
return kMacOSNewer;
}
-bool GetQuickTimeVersion(std::string* out) {
- int ver;
- if (!GetGestalt(gestaltQuickTimeVersion, &ver)) {
- return false;
- }
-
- std::stringstream ss;
- ss << std::hex << ver;
- *out = ss.str();
- return true;
-}
-
bool RunAppleScript(const std::string& script) {
// TODO(thaloun): Add a .mm file that contains something like this:
// NSString source from script
« no previous file with comments | « webrtc/base/macutils.h ('k') | webrtc/base/macutils_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698