mac: Remove unused GetQuickTimeVersion().

The function uses a deprecated function and is unused, so delete it.

BUG=6027
NOTRY=true

Review-Url: https://codereview.webrtc.org/2114013002
Cr-Commit-Position: refs/heads/master@{#13400}
This commit is contained in:
thakis
2016-07-06 11:03:14 -07:00
committed by Commit bot
parent 0cf208aa28
commit d7d3e05ca6
3 changed files with 0 additions and 19 deletions

View File

@ -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