device/fido/mac: add more specific check for TouchID availability

https://chromium-review.googlesource.com/c/chromium/src/+/1487811
This commit is contained in:
deepak1556 2019-03-07 17:24:45 +05:30 коммит произвёл Samuel Attard
Родитель bf6fea3b59
Коммит 457ff0687c
1 изменённых файлов: 0 добавлений и 16 удалений

Просмотреть файл

@ -17,22 +17,6 @@
- (void)setAppearance:(NSAppearance*)appearance API_AVAILABLE(macosx(10.14));
@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
typedef NSString* AVMediaType NS_EXTENSIBLE_STRING_ENUM;