Changeset 243253 in webkit
- Timestamp:
- Mar 20, 2019, 4:24:53 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Shared/mac/AuxiliaryProcessMac.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r243251 r243253 1 2019-03-20 Keith Rollin <krollin@apple.com> 2 3 Update checks that determine if WebKit is system WebKit 4 https://bugs.webkit.org/show_bug.cgi?id=195756 5 6 Unreviewed tweak of r243251 after unreviewed build fix after r243230. 7 8 * Shared/mac/AuxiliaryProcessMac.mm: 9 (WebKit::AuxiliaryProcess::isSystemWebKit): 10 1 11 2019-03-20 Keith Rollin <krollin@apple.com> 2 12 -
trunk/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm
r243251 r243253 719 719 bool AuxiliaryProcess::isSystemWebKit() 720 720 { 721 static bool isSystemWebKit = [] {721 static bool isSystemWebKit = []() -> bool { 722 722 #if HAVE(ALTERNATE_SYSTEM_LAYOUT) 723 723 if ([[webKit2Bundle() bundlePath] hasPrefix:@"/Library/Apple/System/"]) 724 return YES;724 return true; 725 725 #endif 726 726 return [[webKit2Bundle() bundlePath] hasPrefix:@"/System/"];
Note:
See TracChangeset
for help on using the changeset viewer.