Title: [240630] trunk/Source/WebKit
Revision
240630
Author
timo...@apple.com
Date
2019-01-28 17:56:08 -0800 (Mon, 28 Jan 2019)

Log Message

Add back some includes that got removed at some point.
https://bugs.webkit.org/show_bug.cgi?id=193942

Reviewed by Tim Horton.

* UIProcess/API/Cocoa/WKWebView.mm:
* UIProcess/API/Cocoa/WKWebViewInternal.h:
* UIProcess/ios/PageClientImplIOS.h:
* UIProcess/ios/PageClientImplIOS.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (240629 => 240630)


--- trunk/Source/WebKit/ChangeLog	2019-01-29 01:53:16 UTC (rev 240629)
+++ trunk/Source/WebKit/ChangeLog	2019-01-29 01:56:08 UTC (rev 240630)
@@ -1,5 +1,17 @@
 2019-01-28  Timothy Hatcher  <timo...@apple.com>
 
+        Add back some includes that got removed at some point.
+        https://bugs.webkit.org/show_bug.cgi?id=193942
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        * UIProcess/API/Cocoa/WKWebViewInternal.h:
+        * UIProcess/ios/PageClientImplIOS.h:
+        * UIProcess/ios/PageClientImplIOS.mm:
+
+2019-01-28  Timothy Hatcher  <timo...@apple.com>
+
         Make it easier for non-Apple ports to enable dark mode CSS support.
         https://bugs.webkit.org/show_bug.cgi?id=193882
 

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm (240629 => 240630)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm	2019-01-29 01:53:16 UTC (rev 240629)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm	2019-01-29 01:56:08 UTC (rev 240630)
@@ -477,6 +477,10 @@
 
 #endif
 
+#if USE(APPLE_INTERNAL_SDK)
+#include <WebKitAdditions/WKWebViewInternalAdditions.mm>
+#endif
+
 static bool shouldRequireUserGestureToLoadVideo()
 {
 #if PLATFORM(IOS_FAMILY)
@@ -7042,6 +7046,10 @@
 
 #endif // PLATFORM(IOS_FAMILY)
 
+#if USE(APPLE_INTERNAL_SDK)
+#include <WebKitAdditions/WKWebViewAdditions.mm>
+#endif
+
 - (BOOL)_beginBackSwipeForTesting
 {
 #if PLATFORM(MAC)

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewInternal.h (240629 => 240630)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewInternal.h	2019-01-29 01:53:16 UTC (rev 240629)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewInternal.h	2019-01-29 01:56:08 UTC (rev 240630)
@@ -170,6 +170,10 @@
 @property (nonatomic, readonly, getter=_isRetainingActiveFocusedState) BOOL _retainingActiveFocusedState;
 #endif
 
+#if USE(APPLE_INTERNAL_SDK)
+#include <WebKitAdditions/WKWebViewInternalAdditions.h>
+#endif
+
 #if ENABLE(ACCESSIBILITY_EVENTS)
 - (void)_updateAccessibilityEventsEnabled;
 #endif

Modified: trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.h (240629 => 240630)


--- trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.h	2019-01-29 01:53:16 UTC (rev 240629)
+++ trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.h	2019-01-29 01:56:08 UTC (rev 240630)
@@ -137,6 +137,10 @@
         
     void didPerformDictionaryLookup(const WebCore::DictionaryPopupInfo&) override;
 
+#if USE(APPLE_INTERNAL_SDK)
+#include <WebKitAdditions/PageClientImplIOSAdditions.h>
+#endif
+
     void couldNotRestorePageState() override;
     void restorePageState(Optional<WebCore::FloatPoint>, const WebCore::FloatPoint&, const WebCore::FloatBoxExtent&, double) override;
     void restorePageCenterAndScale(Optional<WebCore::FloatPoint>, double) override;

Modified: trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.mm (240629 => 240630)


--- trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.mm	2019-01-29 01:53:16 UTC (rev 240629)
+++ trunk/Source/WebKit/UIProcess/ios/PageClientImplIOS.mm	2019-01-29 01:56:08 UTC (rev 240630)
@@ -463,6 +463,10 @@
 #endif // ENABLE(REVEAL)
 }
 
+#if USE(APPLE_INTERNAL_SDK)
+#include <WebKitAdditions/PageClientImplIOSAdditions.mm>
+#endif
+
 void PageClientImpl::setRemoteLayerTreeRootNode(RemoteLayerTreeNode* rootNode)
 {
     [m_contentView _setAcceleratedCompositingRootView:rootNode ? rootNode->uiView() : nil];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to