Title: [254751] trunk/Source
Revision
254751
Author
[email protected]
Date
2020-01-17 10:09:45 -0800 (Fri, 17 Jan 2020)

Log Message

Fix various non-unified build issues introduced since r254327
https://bugs.webkit.org/show_bug.cgi?id=206356

Reviewed by Chris Dumez.

Source/WebCore:

No new tests needed.

* html/LinkRelAttribute.h: Add missing inclusion of wtf/Markable.h

Source/WebKit:

* WebProcess/WebCoreSupport/gtk/WebContextMenuClientGtk.cpp:
(WebKit::WebContextMenuClient::insertEmoji): Add missing namespace to WebCore::Frame parameter.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (254750 => 254751)


--- trunk/Source/WebCore/ChangeLog	2020-01-17 16:24:33 UTC (rev 254750)
+++ trunk/Source/WebCore/ChangeLog	2020-01-17 18:09:45 UTC (rev 254751)
@@ -1,3 +1,14 @@
+2020-01-17  Adrian Perez de Castro  <[email protected]>
+
+        Fix various non-unified build issues introduced since r254327
+        https://bugs.webkit.org/show_bug.cgi?id=206356
+
+        Reviewed by Chris Dumez.
+
+        No new tests needed.
+
+        * html/LinkRelAttribute.h: Add missing inclusion of wtf/Markable.h
+
 2020-01-17  Zalan Bujtas  <[email protected]>
 
         [LFC][IFC] Optimize LineBuilder::appendTextContent for the most common inline content

Modified: trunk/Source/WebCore/html/LinkRelAttribute.h (254750 => 254751)


--- trunk/Source/WebCore/html/LinkRelAttribute.h	2020-01-17 16:24:33 UTC (rev 254750)
+++ trunk/Source/WebCore/html/LinkRelAttribute.h	2020-01-17 18:09:45 UTC (rev 254751)
@@ -33,6 +33,7 @@
 #pragma once
 
 #include <wtf/Forward.h>
+#include <wtf/Markable.h>
 #include <wtf/Optional.h>
 
 namespace WebCore {

Modified: trunk/Source/WebKit/ChangeLog (254750 => 254751)


--- trunk/Source/WebKit/ChangeLog	2020-01-17 16:24:33 UTC (rev 254750)
+++ trunk/Source/WebKit/ChangeLog	2020-01-17 18:09:45 UTC (rev 254751)
@@ -1,3 +1,13 @@
+2020-01-17  Adrian Perez de Castro  <[email protected]>
+
+        Fix various non-unified build issues introduced since r254327
+        https://bugs.webkit.org/show_bug.cgi?id=206356
+
+        Reviewed by Chris Dumez.
+
+        * WebProcess/WebCoreSupport/gtk/WebContextMenuClientGtk.cpp:
+        (WebKit::WebContextMenuClient::insertEmoji): Add missing namespace to WebCore::Frame parameter.
+
 2020-01-17  Fujii Hironori  <[email protected]>
 
         [WinCairo][WK2] ASSERT(isUIThread()) is failing since r254723

Modified: trunk/Source/WebKit/WebProcess/WebCoreSupport/gtk/WebContextMenuClientGtk.cpp (254750 => 254751)


--- trunk/Source/WebKit/WebProcess/WebCoreSupport/gtk/WebContextMenuClientGtk.cpp	2020-01-17 16:24:33 UTC (rev 254750)
+++ trunk/Source/WebKit/WebProcess/WebCoreSupport/gtk/WebContextMenuClientGtk.cpp	2020-01-17 18:09:45 UTC (rev 254751)
@@ -33,7 +33,7 @@
 
 namespace WebKit {
 
-void WebContextMenuClient::insertEmoji(Frame& frame)
+void WebContextMenuClient::insertEmoji(WebCore::Frame& frame)
 {
     m_page->showEmojiPicker(frame);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to