Title: [231205] trunk/Source/WebKit
Revision
231205
Author
[email protected]
Date
2018-05-01 12:57:17 -0700 (Tue, 01 May 2018)

Log Message

Use correct runloop type in the WebContent process.
https://bugs.webkit.org/show_bug.cgi?id=185140

Reviewed by Brent Fulgham.

Use WK_MACOS_* machinery to determine runloop type for the WebContent process.

* Configurations/WebContentService.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (231204 => 231205)


--- trunk/Source/WebKit/ChangeLog	2018-05-01 19:55:59 UTC (rev 231204)
+++ trunk/Source/WebKit/ChangeLog	2018-05-01 19:57:17 UTC (rev 231205)
@@ -1,3 +1,14 @@
+2018-05-01  Per Arne Vollan  <[email protected]>
+
+        Use correct runloop type in the WebContent process.
+        https://bugs.webkit.org/show_bug.cgi?id=185140
+
+        Reviewed by Brent Fulgham.
+
+        Use WK_MACOS_* machinery to determine runloop type for the WebContent process.
+
+        * Configurations/WebContentService.xcconfig:
+
 2018-05-01  Oleksandr Skachkov  <[email protected]>
 
         WebAssembly: add support for stream APIs - _javascript_ API

Modified: trunk/Source/WebKit/Configurations/WebContentService.xcconfig (231204 => 231205)


--- trunk/Source/WebKit/Configurations/WebContentService.xcconfig	2018-05-01 19:55:59 UTC (rev 231204)
+++ trunk/Source/WebKit/Configurations/WebContentService.xcconfig	2018-05-01 19:57:17 UTC (rev 231205)
@@ -60,9 +60,6 @@
 WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_NO = $(WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG);
 WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_YES = $(USE_STAGING_INSTALL_PATH);
 
-RUNLOOP_TYPE = $(RUNLOOP_TYPE_$(PLATFORM_NAME)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-RUNLOOP_TYPE_macosx_101100 = _NSApplicationMain;
-RUNLOOP_TYPE_macosx_101200 = _NSApplicationMain;
-RUNLOOP_TYPE_macosx_101300 = _NSApplicationMain;
-RUNLOOP_TYPE_macosx_101400 = NSRunLoop;
-RUNLOOP_TYPE_macosx_101500 = NSRunLoop;
+RUNLOOP_TYPE = $(RUNLOOP_TYPE$(WK_MACOS_1014));
+RUNLOOP_TYPE_MACOS_BEFORE_1014 = _NSApplicationMain;
+RUNLOOP_TYPE_MACOS_SINCE_1014 = NSRunLoop;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to