Changeset 285737 in webkit
- Timestamp:
- Nov 12, 2021, 12:38:12 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 1 added
- 1 deleted
- 3 edited
- 1 copied
-
ChangeLog (modified) (1 diff)
-
SourcesCocoa.txt (modified) (1 diff)
-
UIProcess/Launcher/cocoa (added)
-
UIProcess/Launcher/cocoa/ProcessLauncherCocoa.mm (copied) (copied from trunk/Source/WebKit/UIProcess/Launcher/darwin/ProcessLauncherDarwin.mm )
-
UIProcess/Launcher/darwin (deleted)
-
WebKit.xcodeproj/project.pbxproj (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r285736 r285737 1 2021-11-12 Chris Dumez <cdumez@apple.com> 2 3 Rename ProcessLauncherMac.mm to ProcessLauncherCocoa.mm 4 https://bugs.webkit.org/show_bug.cgi?id=233045 5 <rdar://problem/85347107> 6 7 Reviewed by Brent Fulgham. 8 9 Follow-up to r285729 to rename to ProcessLauncherCocoa.mm instead of ProcessLauncherDarwin.mm 10 given that the implementation is using NSBundle. 11 12 * SourcesCocoa.txt: 13 * UIProcess/Launcher/cocoa/ProcessLauncherCocoa.mm: Renamed from Source/WebKit/UIProcess/Launcher/darwin/ProcessLauncherDarwin.mm. 14 (WebKit::serviceName): 15 (WebKit::shouldLeakBoost): 16 (WebKit::systemDirectoryPath): 17 (WebKit::ProcessLauncher::launchProcess): 18 (WebKit::ProcessLauncher::terminateProcess): 19 (WebKit::ProcessLauncher::platformInvalidate): 20 (WebKit::ProcessLauncher::terminateXPCConnection): 21 (WebKit::terminateWithReason): 22 * WebKit.xcodeproj/project.pbxproj: 23 1 24 2021-11-12 Brent Fulgham <bfulgham@apple.com> 2 25 -
trunk/Source/WebKit/SourcesCocoa.txt
r285729 r285737 512 512 UIProcess/ios/WKWebEvent.mm 513 513 514 UIProcess/Launcher/ darwin/ProcessLauncherDarwin.mm514 UIProcess/Launcher/cocoa/ProcessLauncherCocoa.mm 515 515 516 516 UIProcess/mac/CorrectionPanel.mm -
trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj
r285729 r285737 3789 3789 4683569A21E81CC7006E27A3 /* ProvisionalPageProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProvisionalPageProxy.h; sourceTree = "<group>"; }; 3790 3790 4683569B21E81CC7006E27A3 /* ProvisionalPageProxy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProvisionalPageProxy.cpp; sourceTree = "<group>"; }; 3791 469DE802273ECC5D00930276 /* ProcessLauncher Darwin.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ProcessLauncherDarwin.mm; sourceTree = "<group>"; };3791 469DE802273ECC5D00930276 /* ProcessLauncherCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ProcessLauncherCocoa.mm; sourceTree = "<group>"; }; 3792 3792 46A2B6061E5675A200C3DEDA /* BackgroundProcessResponsivenessTimer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BackgroundProcessResponsivenessTimer.cpp; sourceTree = "<group>"; }; 3793 3793 46A2B6071E5675A200C3DEDA /* BackgroundProcessResponsivenessTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BackgroundProcessResponsivenessTimer.h; sourceTree = "<group>"; }; … … 8418 8418 sourceTree = "<group>"; 8419 8419 }; 8420 469DE801273ECC5D00930276 /* darwin*/ = {8421 isa = PBXGroup; 8422 children = ( 8423 469DE802273ECC5D00930276 /* ProcessLauncher Darwin.mm */,8424 ); 8425 path = darwin;8420 469DE801273ECC5D00930276 /* cocoa */ = { 8421 isa = PBXGroup; 8422 children = ( 8423 469DE802273ECC5D00930276 /* ProcessLauncherCocoa.mm */, 8424 ); 8425 path = cocoa; 8426 8426 sourceTree = "<group>"; 8427 8427 }; … … 10435 10435 isa = PBXGroup; 10436 10436 children = ( 10437 469DE801273ECC5D00930276 /* darwin*/,10437 469DE801273ECC5D00930276 /* cocoa */, 10438 10438 1AE117F511DBB30900981615 /* ProcessLauncher.cpp */, 10439 10439 BC1A7C571136E19C00FB7167 /* ProcessLauncher.h */,
Note:
See TracChangeset
for help on using the changeset viewer.