Changeset 257891 in webkit


Ignore:
Timestamp:
Mar 4, 2020 5:02:51 PM (4 years ago)
Author:
jiewen_tan@apple.com
Message:

Unreviewed, a build fix after r257877

  • UIProcess/WebAuthentication/Cocoa/LocalConnection.mm:

(WebKit::LocalConnection::verifyUser const):
Restricts LAOptionPasscodeTitle to iOS for now.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r257888 r257891  
     12020-03-04  Jiewen Tan  <jiewen_tan@apple.com>
     2
     3        Unreviewed, a build fix after r257877
     4
     5        * UIProcess/WebAuthentication/Cocoa/LocalConnection.mm:
     6        (WebKit::LocalConnection::verifyUser const):
     7        Restricts LAOptionPasscodeTitle to iOS for now.
     8
    192020-03-04  Chris Dumez  <cdumez@apple.com>
    210
  • trunk/Source/WebKit/UIProcess/WebAuthentication/Cocoa/LocalConnection.mm

    r257877 r257891  
    4848    if ([context biometryType] == LABiometryTypeTouchID)
    4949        [options setObject:WebCore::touchIDPromptTitle() forKey:@(LAOptionAuthenticationTitle)];
     50#if PLATFORM(iOS)
    5051    [options setObject:WebCore::biometricFallbackPromptTitle() forKey:@(LAOptionPasscodeTitle)];
     52#endif
    5153
    5254    auto reply = makeBlockPtr([context, completionHandler = WTFMove(completionHandler)] (NSDictionary *, NSError *error) mutable {
Note: See TracChangeset for help on using the changeset viewer.