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

Changeset 243227 in webkit


Ignore:
Timestamp:
Mar 20, 2019, 12:52:40 PM (7 years ago)
Author:
Keith Rollin
Message:

Update the location for XProtect.meta.plist file
https://bugs.webkit.org/show_bug.cgi?id=195764

Reviewed by Alexey Proskuryakov.

The location of this file is changing in the future, so adjust for
that.

No new tests since there should be no observable behavior difference.

  • platform/mac/BlacklistUpdater.mm:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r243219 r243227  
     12019-03-20  Keith Rollin  <krollin@apple.com>
     2
     3        Update the location for XProtect.meta.plist file
     4        https://bugs.webkit.org/show_bug.cgi?id=195764
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        The location of this file is changing in the future, so adjust for
     9        that.
     10
     11        No new tests since there should be no observable behavior difference.
     12
     13        * platform/mac/BlacklistUpdater.mm:
     14
    1152019-03-20  Devin Rousso  <drousso@apple.com>
    216
  • trunk/Source/WebCore/platform/mac/BlacklistUpdater.mm

    r219050 r243227  
    4444static time_t blacklistUpdateTime;
    4545
     46#if HAVE(ALTERNATE_SYSTEM_LAYOUT)
     47NSString * const blacklistPath = @"/Library/Apple/System/Library/CoreServices/XProtect.bundle/Contents/Resources/XProtect.meta.plist";
     48#else
    4649NSString * const blacklistPath = @"/System/Library/CoreServices/XProtect.bundle/Contents/Resources/XProtect.meta.plist";
     50#endif
    4751
    4852namespace WebCore {
Note: See TracChangeset for help on using the changeset viewer.