Title: [274162] trunk/Source/WebCore
Revision
274162
Author
[email protected]
Date
2021-03-09 11:24:05 -0800 (Tue, 09 Mar 2021)

Log Message

Unreviewed, fix the ENABLE(APP_HIGHLIGHTS) build after r274155

* Modules/highlight/AppHighlightStorage.h: Fix the signature of `AppHighlightStorage::storeAppHighlight`.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (274161 => 274162)


--- trunk/Source/WebCore/ChangeLog	2021-03-09 19:08:33 UTC (rev 274161)
+++ trunk/Source/WebCore/ChangeLog	2021-03-09 19:24:05 UTC (rev 274162)
@@ -1,3 +1,9 @@
+2021-03-09  Wenson Hsieh  <[email protected]>
+
+        Unreviewed, fix the ENABLE(APP_HIGHLIGHTS) build after r274155
+
+        * Modules/highlight/AppHighlightStorage.h: Fix the signature of `AppHighlightStorage::storeAppHighlight`.
+
 2021-03-09  Ben Nham  <[email protected]>
 
         Adopt new NSURLSessionConfiguration SPI for connection cache configuration

Modified: trunk/Source/WebCore/Modules/highlight/AppHighlightStorage.h (274161 => 274162)


--- trunk/Source/WebCore/Modules/highlight/AppHighlightStorage.h	2021-03-09 19:08:33 UTC (rev 274161)
+++ trunk/Source/WebCore/Modules/highlight/AppHighlightStorage.h	2021-03-09 19:24:05 UTC (rev 274162)
@@ -49,7 +49,7 @@
     AppHighlightStorage(Document&);
     ~AppHighlightStorage();
 
-    WEBCORE_EXPORT void storeAppHighlight(StaticRange&&);
+    WEBCORE_EXPORT void storeAppHighlight(Ref<StaticRange>&&);
     WEBCORE_EXPORT void restoreAppHighlight(Ref<SharedBuffer>&&);
     void restoreUnrestoredAppHighlights();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to