blob: 4beb69167611c2f7571bc7fe73c7e7ab934ccfdb [file] [log] [blame]
Avi Drissmane4622aa2022-09-08 20:36:061// Copyright 2019 The Chromium Authors
Niels Möller031125412019-08-28 07:52:592// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/mac/scoped_authorizationref.h"
6
Avi Drissmanefca4122022-01-05 23:59:367namespace base::mac {
Niels Möller031125412019-08-28 07:52:598
9void ScopedAuthorizationRef::FreeInternal() {
10 AuthorizationFree(authorization_, kAuthorizationFlagDestroyRights);
11}
12
Avi Drissmanefca4122022-01-05 23:59:3613} // namespace base::mac