Title: [243178] trunk/Source/WebKit
Revision
243178
Author
[email protected]
Date
2019-03-19 16:22:11 -0700 (Tue, 19 Mar 2019)

Log Message

Unreviewed build fix after r243173.

* UIProcess/Cocoa/UIDelegate.mm:
(WebKit::UIDelegate::UIClient::requestStorageAccessConfirm):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (243177 => 243178)


--- trunk/Source/WebKit/ChangeLog	2019-03-19 23:02:26 UTC (rev 243177)
+++ trunk/Source/WebKit/ChangeLog	2019-03-19 23:22:11 UTC (rev 243178)
@@ -1,3 +1,10 @@
+2019-03-19  Chris Dumez  <[email protected]>
+
+        Unreviewed build fix after r243173.
+
+        * UIProcess/Cocoa/UIDelegate.mm:
+        (WebKit::UIDelegate::UIClient::requestStorageAccessConfirm):
+
 2019-03-19  Brent Fulgham  <[email protected]>
 
         Add default prompt implementation for the Storage Access API

Modified: trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.mm (243177 => 243178)


--- trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.mm	2019-03-19 23:02:26 UTC (rev 243177)
+++ trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.mm	2019-03-19 23:22:11 UTC (rev 243178)
@@ -346,7 +346,9 @@
     }
     
     if (!m_uiDelegate.m_delegateMethods.webViewRequestStorageAccessPanelForTopPrivatelyControlledDomainUnderFirstPartyTopPrivatelyControlledDomainCompletionHandler) {
+#if !PLATFORM(WATCHOS) && !PLATFORM(APPLETV)
         presentStorageAccessAlert(m_uiDelegate.m_webView, requestingDomain, currentDomain, WTFMove(completionHandler));
+#endif
         return;
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to