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

Changeset 285737 in webkit


Ignore:
Timestamp:
Nov 12, 2021, 12:38:12 PM (5 years ago)
Author:
Chris Dumez
Message:

Rename ProcessLauncherMac.mm to ProcessLauncherCocoa.mm
https://bugs.webkit.org/show_bug.cgi?id=233045
<rdar://problem/85347107>

Reviewed by Brent Fulgham.

Follow-up to r285729 to rename to ProcessLauncherCocoa.mm instead of ProcessLauncherDarwin.mm
given that the implementation is using NSBundle.

  • SourcesCocoa.txt:
  • UIProcess/Launcher/cocoa/ProcessLauncherCocoa.mm: Renamed from Source/WebKit/UIProcess/Launcher/darwin/ProcessLauncherDarwin.mm.

(WebKit::serviceName):
(WebKit::shouldLeakBoost):
(WebKit::systemDirectoryPath):
(WebKit::ProcessLauncher::launchProcess):
(WebKit::ProcessLauncher::terminateProcess):
(WebKit::ProcessLauncher::platformInvalidate):
(WebKit::ProcessLauncher::terminateXPCConnection):
(WebKit::terminateWithReason):

  • WebKit.xcodeproj/project.pbxproj:
Location:
trunk/Source/WebKit
Files:
1 added
1 deleted
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r285736 r285737  
     12021-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
    1242021-11-12  Brent Fulgham  <bfulgham@apple.com>
    225
  • trunk/Source/WebKit/SourcesCocoa.txt

    r285729 r285737  
    512512UIProcess/ios/WKWebEvent.mm
    513513
    514 UIProcess/Launcher/darwin/ProcessLauncherDarwin.mm
     514UIProcess/Launcher/cocoa/ProcessLauncherCocoa.mm
    515515
    516516UIProcess/mac/CorrectionPanel.mm
  • trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj

    r285729 r285737  
    37893789                4683569A21E81CC7006E27A3 /* ProvisionalPageProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProvisionalPageProxy.h; sourceTree = "<group>"; };
    37903790                4683569B21E81CC7006E27A3 /* ProvisionalPageProxy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProvisionalPageProxy.cpp; sourceTree = "<group>"; };
    3791                 469DE802273ECC5D00930276 /* ProcessLauncherDarwin.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>"; };
    37923792                46A2B6061E5675A200C3DEDA /* BackgroundProcessResponsivenessTimer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BackgroundProcessResponsivenessTimer.cpp; sourceTree = "<group>"; };
    37933793                46A2B6071E5675A200C3DEDA /* BackgroundProcessResponsivenessTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BackgroundProcessResponsivenessTimer.h; sourceTree = "<group>"; };
     
    84188418                        sourceTree = "<group>";
    84198419                };
    8420                 469DE801273ECC5D00930276 /* darwin */ = {
    8421                         isa = PBXGroup;
    8422                         children = (
    8423                                 469DE802273ECC5D00930276 /* ProcessLauncherDarwin.mm */,
    8424                         );
    8425                         path = darwin;
     8420                469DE801273ECC5D00930276 /* cocoa */ = {
     8421                        isa = PBXGroup;
     8422                        children = (
     8423                                469DE802273ECC5D00930276 /* ProcessLauncherCocoa.mm */,
     8424                        );
     8425                        path = cocoa;
    84268426                        sourceTree = "<group>";
    84278427                };
     
    1043510435                        isa = PBXGroup;
    1043610436                        children = (
    10437                                 469DE801273ECC5D00930276 /* darwin */,
     10437                                469DE801273ECC5D00930276 /* cocoa */,
    1043810438                                1AE117F511DBB30900981615 /* ProcessLauncher.cpp */,
    1043910439                                BC1A7C571136E19C00FB7167 /* ProcessLauncher.h */,
Note: See TracChangeset for help on using the changeset viewer.