Title: [220425] trunk
Revision
220425
Author
mcatanz...@igalia.com
Date
2017-08-08 16:03:21 -0700 (Tue, 08 Aug 2017)

Log Message

Unreviewed, fix Ubuntu LTS build
https://bugs.webkit.org/show_bug.cgi?id=174490

Source/_javascript_Core:

* inspector/remote/glib/RemoteInspectorGlib.cpp:
* inspector/remote/glib/RemoteInspectorServer.cpp:

Source/WebDriver:

* glib/SessionHostGlib.cpp:

Source/WebKit:

* UIProcess/glib/RemoteInspectorClient.cpp:
(WebKit::RemoteInspectorClient::RemoteInspectorClient):

Tools:

* TestWebKitAPI/Tests/WebKitGLib/TestAutomationSession.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (220424 => 220425)


--- trunk/Source/_javascript_Core/ChangeLog	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-08-08 23:03:21 UTC (rev 220425)
@@ -1,3 +1,11 @@
+2017-08-08  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, fix Ubuntu LTS build
+        https://bugs.webkit.org/show_bug.cgi?id=174490
+
+        * inspector/remote/glib/RemoteInspectorGlib.cpp:
+        * inspector/remote/glib/RemoteInspectorServer.cpp:
+
 2017-08-08  Filip Pizlo  <fpi...@apple.com>
 
         Baseline JIT should do caging

Modified: trunk/Source/_javascript_Core/inspector/remote/glib/RemoteInspectorGlib.cpp (220424 => 220425)


--- trunk/Source/_javascript_Core/inspector/remote/glib/RemoteInspectorGlib.cpp	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Source/_javascript_Core/inspector/remote/glib/RemoteInspectorGlib.cpp	2017-08-08 23:03:21 UTC (rev 220425)
@@ -151,7 +151,7 @@
     // set_property
     nullptr,
     // padding
-    nullptr
+    { 0 }
 };
 
 void RemoteInspector::setupConnection(GRefPtr<GDBusConnection>&& connection)

Modified: trunk/Source/_javascript_Core/inspector/remote/glib/RemoteInspectorServer.cpp (220424 => 220425)


--- trunk/Source/_javascript_Core/inspector/remote/glib/RemoteInspectorServer.cpp	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Source/_javascript_Core/inspector/remote/glib/RemoteInspectorServer.cpp	2017-08-08 23:03:21 UTC (rev 220425)
@@ -135,7 +135,7 @@
     // set_property
     nullptr,
     // padding
-    nullptr
+    { 0 }
 };
 
 RemoteInspectorServer& RemoteInspectorServer::singleton()

Modified: trunk/Source/WebDriver/ChangeLog (220424 => 220425)


--- trunk/Source/WebDriver/ChangeLog	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Source/WebDriver/ChangeLog	2017-08-08 23:03:21 UTC (rev 220425)
@@ -1,5 +1,12 @@
 2017-08-08  Michael Catanzaro  <mcatanz...@igalia.com>
 
+        Unreviewed, fix Ubuntu LTS build
+        https://bugs.webkit.org/show_bug.cgi?id=174490
+
+        * glib/SessionHostGlib.cpp:
+
+2017-08-08  Michael Catanzaro  <mcatanz...@igalia.com>
+
         [CMake] Properly test if compiler supports compiler flags
         https://bugs.webkit.org/show_bug.cgi?id=174490
 

Modified: trunk/Source/WebDriver/glib/SessionHostGlib.cpp (220424 => 220425)


--- trunk/Source/WebDriver/glib/SessionHostGlib.cpp	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Source/WebDriver/glib/SessionHostGlib.cpp	2017-08-08 23:03:21 UTC (rev 220425)
@@ -95,7 +95,7 @@
     // set_property
     nullptr,
     // padding
-    nullptr
+    { 0 }
 };
 
 void SessionHost::connectToBrowser(Function<void (Succeeded)>&& completionHandler)

Modified: trunk/Source/WebKit/ChangeLog (220424 => 220425)


--- trunk/Source/WebKit/ChangeLog	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Source/WebKit/ChangeLog	2017-08-08 23:03:21 UTC (rev 220425)
@@ -1,3 +1,11 @@
+2017-08-08  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, fix Ubuntu LTS build
+        https://bugs.webkit.org/show_bug.cgi?id=174490
+
+        * UIProcess/glib/RemoteInspectorClient.cpp:
+        (WebKit::RemoteInspectorClient::RemoteInspectorClient):
+
 2017-08-08  Wenson Hsieh  <wenson_hs...@apple.com>
 
         Unreviewed, fix the Mac debug build after r220418.

Modified: trunk/Source/WebKit/UIProcess/glib/RemoteInspectorClient.cpp (220424 => 220425)


--- trunk/Source/WebKit/UIProcess/glib/RemoteInspectorClient.cpp	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Source/WebKit/UIProcess/glib/RemoteInspectorClient.cpp	2017-08-08 23:03:21 UTC (rev 220425)
@@ -149,7 +149,7 @@
     // set_property
     nullptr,
     // padding
-    nullptr
+    { 0 }
 };
 
 RemoteInspectorClient::RemoteInspectorClient(const char* address, unsigned port, RemoteInspectorObserver& observer)

Modified: trunk/Tools/ChangeLog (220424 => 220425)


--- trunk/Tools/ChangeLog	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Tools/ChangeLog	2017-08-08 23:03:21 UTC (rev 220425)
@@ -1,3 +1,10 @@
+2017-08-08  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, fix Ubuntu LTS build
+        https://bugs.webkit.org/show_bug.cgi?id=174490
+
+        * TestWebKitAPI/Tests/WebKitGLib/TestAutomationSession.cpp:
+
 2017-08-08  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [Mac WK2] WebViewImpl should hold a weak pointer to its WKWebView or WKView

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestAutomationSession.cpp (220424 => 220425)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestAutomationSession.cpp	2017-08-08 22:53:15 UTC (rev 220424)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestAutomationSession.cpp	2017-08-08 23:03:21 UTC (rev 220425)
@@ -97,7 +97,7 @@
         // set_property
         nullptr,
         // padding
-        nullptr
+        { 0 }
     };
 
     void registerDBusObject()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to