Title: [259526] trunk/Source/WebKit
Revision
259526
Author
[email protected]
Date
2020-04-03 19:42:10 -0700 (Fri, 03 Apr 2020)

Log Message

The IPC message “registerAttachmentsFromSerializedData" should be capitalized
https://bugs.webkit.org/show_bug.cgi?id=209995
<rdar://problem/61283172>

Reviewed by Tim Horton.

Tweak the name of this IPC message so that it begins with a capital letter. No change in behavior.

* UIProcess/WebPageProxy.messages.in:
* WebProcess/WebCoreSupport/WebEditorClient.cpp:
(WebKit::WebEditorClient::registerAttachments):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (259525 => 259526)


--- trunk/Source/WebKit/ChangeLog	2020-04-04 01:04:42 UTC (rev 259525)
+++ trunk/Source/WebKit/ChangeLog	2020-04-04 02:42:10 UTC (rev 259526)
@@ -1,3 +1,17 @@
+2020-04-03  Wenson Hsieh  <[email protected]>
+
+        The IPC message “registerAttachmentsFromSerializedData" should be capitalized
+        https://bugs.webkit.org/show_bug.cgi?id=209995
+        <rdar://problem/61283172>
+
+        Reviewed by Tim Horton.
+
+        Tweak the name of this IPC message so that it begins with a capital letter. No change in behavior.
+
+        * UIProcess/WebPageProxy.messages.in:
+        * WebProcess/WebCoreSupport/WebEditorClient.cpp:
+        (WebKit::WebEditorClient::registerAttachments):
+
 2020-04-03  Alex Christensen  <[email protected]>
 
         Add SPI to make WKUserScripts wait for a notification

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.messages.in (259525 => 259526)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.messages.in	2020-04-04 01:04:42 UTC (rev 259525)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.messages.in	2020-04-04 02:42:10 UTC (rev 259526)
@@ -548,7 +548,7 @@
     RegisterAttachmentIdentifierFromData(String identifier, String contentType, String preferredFileName, IPC::SharedBufferDataReference data)
     RegisterAttachmentIdentifierFromFilePath(String identifier, String contentType, String filePath)
     RegisterAttachmentIdentifier(String identifier)
-    registerAttachmentsFromSerializedData(Vector<WebCore::SerializedAttachmentData> data)
+    RegisterAttachmentsFromSerializedData(Vector<WebCore::SerializedAttachmentData> data)
     CloneAttachmentData(String fromIdentifier, String toIdentifier)
     DidInsertAttachmentWithIdentifier(String identifier, String source, bool hasEnclosingImage)
     DidRemoveAttachmentWithIdentifier(String identifier)

Modified: trunk/Source/WebKit/WebProcess/WebCoreSupport/WebEditorClient.cpp (259525 => 259526)


--- trunk/Source/WebKit/WebProcess/WebCoreSupport/WebEditorClient.cpp	2020-04-04 01:04:42 UTC (rev 259525)
+++ trunk/Source/WebKit/WebProcess/WebCoreSupport/WebEditorClient.cpp	2020-04-04 02:42:10 UTC (rev 259526)
@@ -169,7 +169,7 @@
 
 void WebEditorClient::registerAttachments(Vector<WebCore::SerializedAttachmentData>&& data)
 {
-    m_page->send(Messages::WebPageProxy::registerAttachmentsFromSerializedData(WTFMove(data)));
+    m_page->send(Messages::WebPageProxy::RegisterAttachmentsFromSerializedData(WTFMove(data)));
 }
 
 void WebEditorClient::registerAttachmentIdentifier(const String& identifier, const String& contentType, const String& filePath)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to