Title: [291930] trunk/Source/WebKit
Revision
291930
Author
[email protected]
Date
2022-03-25 20:05:18 -0700 (Fri, 25 Mar 2022)

Log Message

Unreviewed, reverting r291884.
https://bugs.webkit.org/show_bug.cgi?id=238405

Broke the internal iOS build

Reverted changeset:

"Add Captive Portal alert to WKWebView"
https://bugs.webkit.org/show_bug.cgi?id=238326
https://commits.webkit.org/r291884

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (291929 => 291930)


--- trunk/Source/WebKit/ChangeLog	2022-03-26 02:03:26 UTC (rev 291929)
+++ trunk/Source/WebKit/ChangeLog	2022-03-26 03:05:18 UTC (rev 291930)
@@ -1,3 +1,16 @@
+2022-03-25  Commit Queue  <[email protected]>
+
+        Unreviewed, reverting r291884.
+        https://bugs.webkit.org/show_bug.cgi?id=238405
+
+        Broke the internal iOS build
+
+        Reverted changeset:
+
+        "Add Captive Portal alert to WKWebView"
+        https://bugs.webkit.org/show_bug.cgi?id=238326
+        https://commits.webkit.org/r291884
+
 2022-03-25  Simon Fraser  <[email protected]>
 
         Temporarily disable assertion in MessageReceiveQueueMap::addImpl()

Modified: trunk/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.h (291929 => 291930)


--- trunk/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.h	2022-03-26 02:03:26 UTC (rev 291929)
+++ trunk/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.h	2022-03-26 03:05:18 UTC (rev 291930)
@@ -25,9 +25,6 @@
 
 #import "WKWebViewInternal.h"
 #import "_WKTapHandlingResult.h"
-#if USE(APPLE_INTERNAL_SDK) && PLATFORM(IOS_FAMILY)
-#import <WebKitAdditions/WKWebViewAdditions.h>
-#endif
 
 @class UIScrollEvent;
 

Modified: trunk/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm (291929 => 291930)


--- trunk/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm	2022-03-26 02:03:26 UTC (rev 291929)
+++ trunk/Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm	2022-03-26 03:05:18 UTC (rev 291930)
@@ -1543,14 +1543,6 @@
     return false;
 }
 
-#if USE(APPLE_INTERNAL_SDK)
-#import <WebKitAdditions/WKWebViewAdditions.mm>
-#else
-- (void)_presentCaptivePortalModeAlertIfNeeded
-{
-}
-#endif
-
 - (void)didMoveToWindow
 {
     if (!_overridesInterfaceOrientation)
@@ -1557,7 +1549,6 @@
         [self _dispatchSetDeviceOrientation:[self _deviceOrientation]];
     _page->activityStateDidChange(WebCore::ActivityState::allFlags());
     _page->webViewDidMoveToWindow();
-    [self _presentCaptivePortalModeAlertIfNeeded];
 }
 
 - (void)_setOpaqueInternal:(BOOL)opaque
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to