Title: [243205] trunk/Source/WebKit
Revision
243205
Author
[email protected]
Date
2019-03-20 09:17:21 -0700 (Wed, 20 Mar 2019)

Log Message

Unreviewed, fix typo in comment added in r243156.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::postMessageToInjectedBundle):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (243204 => 243205)


--- trunk/Source/WebKit/ChangeLog	2019-03-20 16:13:30 UTC (rev 243204)
+++ trunk/Source/WebKit/ChangeLog	2019-03-20 16:17:21 UTC (rev 243205)
@@ -1,5 +1,12 @@
 2019-03-20  Chris Dumez  <[email protected]>
 
+        Unreviewed, fix typo in comment added in r243156.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::postMessageToInjectedBundle):
+
+2019-03-20  Chris Dumez  <[email protected]>
+
         Unreviewed, drop invalid assertions landed in r243163.
 
         Those assertions were causing some API tests to crash.

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (243204 => 243205)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2019-03-20 16:13:30 UTC (rev 243204)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2019-03-20 16:17:21 UTC (rev 243205)
@@ -5796,7 +5796,7 @@
 
 void WebPageProxy::postMessageToInjectedBundle(const String& messageName, API::Object* messageBody)
 {
-    // For backward-compatibility, make sure we launch the initial process if the client asks to post a message to its injected bundle because doing a load.
+    // For backward-compatibility, make sure we launch the initial process if the client asks to post a message to its injected bundle before doing a load.
     launchInitialProcessIfNecessary();
 
     process().send(Messages::WebPage::PostInjectedBundleMessage(messageName, UserData(process().transformObjectsToHandles(messageBody).get())), m_pageID);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to