Title: [281729] trunk/Source/WebKit
- Revision
- 281729
- Author
- [email protected]
- Date
- 2021-08-27 17:57:09 -0700 (Fri, 27 Aug 2021)
Log Message
Address post-landing feedback on r281728.
Move a line inside the #ifdef.
* WebProcess/WebPage/ios/WebPageIOS.mm:
(WebKit::WebPage::platformWillPerformEditingCommand):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (281728 => 281729)
--- trunk/Source/WebKit/ChangeLog 2021-08-28 00:25:24 UTC (rev 281728)
+++ trunk/Source/WebKit/ChangeLog 2021-08-28 00:57:09 UTC (rev 281729)
@@ -1,5 +1,14 @@
2021-08-27 Simon Fraser <[email protected]>
+ Address post-landing feedback on r281728.
+
+ Move a line inside the #ifdef.
+
+ * WebProcess/WebPage/ios/WebPageIOS.mm:
+ (WebKit::WebPage::platformWillPerformEditingCommand):
+
+2021-08-27 Simon Fraser <[email protected]>
+
Define ENABLE_CONTENT_CHANGE_OBSERVER for IOS_FAMILY and use it to wrap content observation code
https://bugs.webkit.org/show_bug.cgi?id=229624
Modified: trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm (281728 => 281729)
--- trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm 2021-08-28 00:25:24 UTC (rev 281728)
+++ trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm 2021-08-28 00:57:09 UTC (rev 281729)
@@ -351,8 +351,8 @@
void WebPage::platformWillPerformEditingCommand()
{
+#if ENABLE(CONTENT_CHANGE_OBSERVER)
auto& frame = m_page->focusController().focusedOrMainFrame();
-#if ENABLE(CONTENT_CHANGE_OBSERVER)
if (auto* document = frame.document()) {
if (auto* holdingTank = document->domTimerHoldingTankIfExists())
holdingTank->removeAll();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes