Changeset 245589 in webkit


Ignore:
Timestamp:
May 21, 2019 12:03:57 PM (5 years ago)
Author:
jiewen_tan@apple.com
Message:

[WebAuthN] Make WebAuthN default on only on macOS
https://bugs.webkit.org/show_bug.cgi?id=198068
<rdar://problem/50971874>

Reviewed by Brent Fulgham.

  • Shared/WebPreferences.yaml:
  • Shared/WebPreferencesDefaultValues.h:
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r245587 r245589  
     12019-05-21  Jiewen Tan  <jiewen_tan@apple.com>
     2
     3        [WebAuthN] Make WebAuthN default on only on macOS
     4        https://bugs.webkit.org/show_bug.cgi?id=198068
     5        <rdar://problem/50971874>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        * Shared/WebPreferences.yaml:
     10        * Shared/WebPreferencesDefaultValues.h:
     11
    1122019-05-21  Pablo Saavedra  <psaavedra@igalia.com>
    213
  • trunk/Source/WebKit/Shared/WebPreferences.yaml

    r245329 r245589  
    750750WebAuthenticationEnabled:
    751751  type: bool
    752   defaultValue: true
     752  defaultValue: DEFAULT_WEB_AUTHENTICATION_ENABLED
    753753  humanReadableName: "Web Authentication"
    754754  humanReadableDescription: "Enable Web Authentication support"
  • trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.h

    r244869 r245589  
    273273#define DEFAULT_APPLE_PAY_ENABLED false
    274274#endif
     275
     276#if PLATFORM(MAC)
     277#define DEFAULT_WEB_AUTHENTICATION_ENABLED true
     278#else
     279#define DEFAULT_WEB_AUTHENTICATION_ENABLED false
     280#endif
Note: See TracChangeset for help on using the changeset viewer.