Title: [254656] trunk/Source/WebKit
Revision
254656
Author
ross.kirsl...@sony.com
Date
2020-01-15 17:17:11 -0800 (Wed, 15 Jan 2020)

Log Message

[PlayStation] Add stubs for WebEditorClient
https://bugs.webkit.org/show_bug.cgi?id=206320

Reviewed by Don Olmstead.

* WebProcess/WebCoreSupport/WebEditorClient.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (254655 => 254656)


--- trunk/Source/WebKit/ChangeLog	2020-01-16 00:56:23 UTC (rev 254655)
+++ trunk/Source/WebKit/ChangeLog	2020-01-16 01:17:11 UTC (rev 254656)
@@ -1,3 +1,12 @@
+2020-01-15  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        [PlayStation] Add stubs for WebEditorClient
+        https://bugs.webkit.org/show_bug.cgi?id=206320
+
+        Reviewed by Don Olmstead.
+
+        * WebProcess/WebCoreSupport/WebEditorClient.cpp:
+
 2020-01-15  Don Olmstead  <don.olmst...@sony.com>
 
         Share WebInspector stubs for ports without local inspection

Modified: trunk/Source/WebKit/WebProcess/WebCoreSupport/WebEditorClient.cpp (254655 => 254656)


--- trunk/Source/WebKit/WebProcess/WebCoreSupport/WebEditorClient.cpp	2020-01-16 00:56:23 UTC (rev 254655)
+++ trunk/Source/WebKit/WebProcess/WebCoreSupport/WebEditorClient.cpp	2020-01-16 01:17:11 UTC (rev 254656)
@@ -360,7 +360,7 @@
     return m_page->requestDOMPasteAccess(originIdentifier);
 }
 
-#if PLATFORM(WIN)
+#if !PLATFORM(COCOA) && !USE(GLIB)
 void WebEditorClient::handleKeyboardEvent(KeyboardEvent& event)
 {
     if (m_page->handleEditingKeyboardEvent(event))
@@ -371,7 +371,7 @@
 {
     notImplemented();
 }
-#endif // PLATFORM(WIN)
+#endif // !PLATFORM(COCOA) && !USE(GLIB)
 
 void WebEditorClient::textFieldDidBeginEditing(Element* element)
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to