Title: [214197] trunk/Source/WebKit2
Revision
214197
Author
achristen...@apple.com
Date
2017-03-20 17:19:53 -0700 (Mon, 20 Mar 2017)

Log Message

Fix GTK build after r214190
https://bugs.webkit.org/show_bug.cgi?id=169885

* UIProcess/InspectorServer/WebSocketServerConnection.cpp:
(WebKit::WebSocketServerConnection::sendWebSocketMessage):
(WebKit::WebSocketServerConnection::sendHTTPResponseHeader):
(WebKit::WebSocketServerConnection::sendRawData):
Finish renaming send to sendData.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (214196 => 214197)


--- trunk/Source/WebKit2/ChangeLog	2017-03-21 00:14:38 UTC (rev 214196)
+++ trunk/Source/WebKit2/ChangeLog	2017-03-21 00:19:53 UTC (rev 214197)
@@ -1,3 +1,14 @@
+2017-03-20  Alex Christensen  <achristen...@webkit.org>
+
+        Fix GTK build after r214190
+        https://bugs.webkit.org/show_bug.cgi?id=169885
+
+        * UIProcess/InspectorServer/WebSocketServerConnection.cpp:
+        (WebKit::WebSocketServerConnection::sendWebSocketMessage):
+        (WebKit::WebSocketServerConnection::sendHTTPResponseHeader):
+        (WebKit::WebSocketServerConnection::sendRawData):
+        Finish renaming send to sendData.
+
 2017-03-20  Anders Carlsson  <ander...@apple.com>
 
         Fix a paste-o in WebPaymentCoordinatorProxy::platformCompletePaymentSession

Modified: trunk/Source/WebKit2/UIProcess/InspectorServer/WebSocketServerConnection.cpp (214196 => 214197)


--- trunk/Source/WebKit2/UIProcess/InspectorServer/WebSocketServerConnection.cpp	2017-03-21 00:14:38 UTC (rev 214196)
+++ trunk/Source/WebKit2/UIProcess/InspectorServer/WebSocketServerConnection.cpp	2017-03-21 00:19:53 UTC (rev 214197)
@@ -92,7 +92,7 @@
     Vector<char> frameData;
     frame.makeFrameData(frameData);
 
-    m_socket->send(frameData.data(), frameData.size(), [](bool) { });
+    m_socket->sendData(frameData.data(), frameData.size(), [](bool) { });
 }
 
 void WebSocketServerConnection::sendHTTPResponseHeader(int statusCode, const String& statusText, const HTTPHeaderMap& headerFields)
@@ -113,12 +113,12 @@
     builder.appendLiteral("\r\n");
 
     CString header = builder.toString().latin1();
-    m_socket->send(header.data(), header.length(), [](bool) { });
+    m_socket->sendData(header.data(), header.length(), [](bool) { });
 }
 
 void WebSocketServerConnection::sendRawData(const char* data, size_t length)
 {
-    m_socket->send(data, length, [](bool) { });
+    m_socket->sendData(data, length, [](bool) { });
 }
 
 void WebSocketServerConnection::didCloseSocketStream(SocketStreamHandle&)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to