blob: 25570de16a39f08b196547699d9888a7f5f81f0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* HBSecurityAccessToken.h $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@protocol HBSecurityScope <NSObject>
/// Given an instance, make the resource referenced by the instance accessible to the process.
- (BOOL)startAccessingSecurityScopedResource;
/// Revokes the access granted to the instance by a prior successful call to startAccessingSecurityScopedResource.
- (void)stopAccessingSecurityScopedResource;
/// Refresh the resources (for example if the instance stores a security scoped bookmark, it will recreate the urls from the bookmark.
- (void)refreshSecurityScopedResources;
@end
@interface HBSecurityAccessToken : NSObject
+ (instancetype)tokenWithObject:(id<HBSecurityScope>)object;
- (instancetype)initWithObject:(id<HBSecurityScope>)object;
@end
NS_ASSUME_NONNULL_END
|