blob: 10fccc1fcb484f91c56fa8f8e0e56556faa5a1d3 (
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
32
33
34
35
36
37
|
/* 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 job accessible to the process.
*/
- (BOOL)startAccessingSecurityScopedResource;
/* Revokes the access granted to the url by a prior successful call to startAccessingSecurityScopedResource.
*/
- (void)stopAccessingSecurityScopedResource;
@end
@interface NSURL (HBSecurityScope) <HBSecurityScope>
- (BOOL)startAccessingSecurityScopedResource;
- (void)stopAccessingSecurityScopedResource;
@end
@interface HBSecurityAccessToken : NSObject
+ (instancetype)tokenWithObject:(id<HBSecurityScope>)object;
- (instancetype)initWithObject:(id<HBSecurityScope>)object;
@end
NS_ASSUME_NONNULL_END
|