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:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user