⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 245705 in webkit


Ignore:
Timestamp:
May 23, 2019, 12:45:15 PM (7 years ago)
Author:
Alan Coon
Message:

Cherry-pick r245589. rdar://problem/50971874

[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:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@245589 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
tags/Safari-608.1.24.50/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tags/Safari-608.1.24.50/Source/WebKit/ChangeLog

    r245686 r245705  
     12019-05-23  Alan Coon  <alancoon@apple.com>
     2
     3        Cherry-pick r245589. rdar://problem/50971874
     4
     5    [WebAuthN] Make WebAuthN default on only on macOS
     6    https://bugs.webkit.org/show_bug.cgi?id=198068
     7    <rdar://problem/50971874>
     8   
     9    Reviewed by Brent Fulgham.
     10   
     11    * Shared/WebPreferences.yaml:
     12    * Shared/WebPreferencesDefaultValues.h:
     13   
     14    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@245589 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     15
     16    2019-05-21  Jiewen Tan  <jiewen_tan@apple.com>
     17
     18            [WebAuthN] Make WebAuthN default on only on macOS
     19            https://bugs.webkit.org/show_bug.cgi?id=198068
     20            <rdar://problem/50971874>
     21
     22            Reviewed by Brent Fulgham.
     23
     24            * Shared/WebPreferences.yaml:
     25            * Shared/WebPreferencesDefaultValues.h:
     26
    1272019-05-23  Kocsen Chung  <kocsen_chung@apple.com>
    228
  • tags/Safari-608.1.24.50/Source/WebKit/Shared/WebPreferences.yaml

    r245053 r245705  
    750750WebAuthenticationEnabled:
    751751  type: bool
    752   defaultValue: false
     752  defaultValue: DEFAULT_WEB_AUTHENTICATION_ENABLED
    753753  humanReadableName: "Web Authentication"
    754754  humanReadableDescription: "Enable Web Authentication support"
  • tags/Safari-608.1.24.50/Source/WebKit/Shared/WebPreferencesDefaultValues.h

    r244869 r245705  
    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.