Title: [221066] trunk/Source/WebKitLegacy/win
Revision
221066
Author
wenson_hs...@apple.com
Date
2017-08-22 21:47:26 -0700 (Tue, 22 Aug 2017)

Log Message

Unreviewed, try to fix the Windows build after r221064

didEndUserTriggeredSelectionChanges is virtual, and needs to be overridden in WebEditorClient.

* WebCoreSupport/WebEditorClient.h:

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/win/ChangeLog (221065 => 221066)


--- trunk/Source/WebKitLegacy/win/ChangeLog	2017-08-23 03:16:55 UTC (rev 221065)
+++ trunk/Source/WebKitLegacy/win/ChangeLog	2017-08-23 04:47:26 UTC (rev 221066)
@@ -1,5 +1,13 @@
 2017-08-22  Wenson Hsieh  <wenson_hs...@apple.com>
 
+        Unreviewed, try to fix the Windows build after r221064
+
+        didEndUserTriggeredSelectionChanges is virtual, and needs to be overridden in WebEditorClient.
+
+        * WebCoreSupport/WebEditorClient.h:
+
+2017-08-22  Wenson Hsieh  <wenson_hs...@apple.com>
+
         [WK2] EditorState updates should be rolled into the layer update lifecycle when possible
         https://bugs.webkit.org/show_bug.cgi?id=175370
         <rdar://problem/33799806>

Modified: trunk/Source/WebKitLegacy/win/WebCoreSupport/WebEditorClient.h (221065 => 221066)


--- trunk/Source/WebKitLegacy/win/WebCoreSupport/WebEditorClient.h	2017-08-23 03:16:55 UTC (rev 221065)
+++ trunk/Source/WebKitLegacy/win/WebCoreSupport/WebEditorClient.h	2017-08-23 04:47:26 UTC (rev 221066)
@@ -55,6 +55,7 @@
     void didWriteSelectionToPasteboard() final;
     void getClientPasteboardDataForRange(WebCore::Range*, Vector<String>& pasteboardTypes, Vector<RefPtr<WebCore::SharedBuffer>>& pasteboardData) final;
 
+    void didEndUserTriggeredSelectionChanges() final { }
     void respondToChangedContents() final;
     void respondToChangedSelection(WebCore::Frame*) final;
     void updateEditorStateAfterLayoutIfEditabilityChanged() final { } 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to