Revert "device/fido/mac: add more specific check for TouchID availability"
This reverts commit457ff0687c
. The change in Chromium that required this removal was itself reverted. Refs:1504308
This commit is contained in:
parent
158e41e578
commit
126639875d
1 changed files with 16 additions and 0 deletions
|
@ -17,6 +17,22 @@
|
||||||
- (void)setAppearance:(NSAppearance*)appearance API_AVAILABLE(macosx(10.14));
|
- (void)setAppearance:(NSAppearance*)appearance API_AVAILABLE(macosx(10.14));
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
#if !defined(MAC_OS_X_VERSION_10_13_2)
|
||||||
|
|
||||||
|
// forward declare Touch ID APIs
|
||||||
|
typedef NS_ENUM(NSInteger, LABiometryType) {
|
||||||
|
LABiometryTypeNone = 0,
|
||||||
|
LABiometryTypeFaceID = 1,
|
||||||
|
LABiometryTypeTouchID = 2,
|
||||||
|
} API_AVAILABLE(macosx(10.13.2));
|
||||||
|
|
||||||
|
@interface LAContext (HighSierraPointTwoSDK)
|
||||||
|
@property(nonatomic, readonly)
|
||||||
|
LABiometryType biometryType API_AVAILABLE(macosx(10.13.2));
|
||||||
|
@end
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
// forward declare Access APIs
|
// forward declare Access APIs
|
||||||
typedef NSString* AVMediaType NS_EXTENSIBLE_STRING_ENUM;
|
typedef NSString* AVMediaType NS_EXTENSIBLE_STRING_ENUM;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue