Changeset 255466 in webkit
- Timestamp:
- Jan 30, 2020, 3:59:33 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r255461 r255466 1 2020-01-30 Jiewen Tan <jiewen_tan@apple.com> 2 3 Unreviewed, another speculative test fix after r255041 4 5 * UIProcess/WebAuthentication/Mock/MockLocalConnection.mm: 6 (WebKit::MockLocalConnection::getAttestation const): 7 Adds kSecAttrAccessible: kSecAttrAccessibleAfterFirstUnlock to secItem to bypass 8 potential error due to screen locks. 9 1 10 2020-01-30 Alex Christensen <achristensen@webkit.org> 2 11 -
trunk/Source/WebKit/UIProcess/WebAuthentication/Mock/MockLocalConnection.mm
r255188 r255466 103 103 (id)kSecClass: (id)kSecClassKey, 104 104 (id)kSecAttrLabel: (id)label, 105 (id)kSecAttrAccessible: (id)kSecAttrAccessibleAfterFirstUnlock, 105 106 #if HAVE(DATA_PROTECTION_KEYCHAIN) 106 107 (id)kSecUseDataProtectionKeychain: @YES -
trunk/Tools/ChangeLog
r255461 r255466 1 2020-01-30 Jiewen Tan <jiewen_tan@apple.com> 2 3 Unreviewed, another speculative test fix after r255041 4 5 * WebKitTestRunner/cocoa/TestControllerCocoa.mm: 6 (WTR::TestController::addTestKeyToKeychain): 7 Adds kSecAttrAccessible: kSecAttrAccessibleAfterFirstUnlock to secItem to bypass 8 potential error due to screen locks. 9 1 10 2020-01-30 Alex Christensen <achristensen@webkit.org> 2 11 -
trunk/Tools/WebKitTestRunner/cocoa/TestControllerCocoa.mm
r255271 r255466 357 357 (id)kSecAttrLabel: attrLabel, 358 358 (id)kSecAttrApplicationTag: adoptNS([[NSData alloc] initWithBase64EncodedString:applicationTagBase64 options:NSDataBase64DecodingIgnoreUnknownCharacters]).get(), 359 (id)kSecAttrAccessible: (id)kSecAttrAccessibleAfterFirstUnlock, 359 360 #if HAVE(DATA_PROTECTION_KEYCHAIN) 360 361 (id)kSecUseDataProtectionKeychain: @YES
Note:
See TracChangeset
for help on using the changeset viewer.