Title: [196844] trunk/Tools
Revision
196844
Author
[email protected]
Date
2016-02-19 16:01:51 -0800 (Fri, 19 Feb 2016)

Log Message

[GTK] Fixed link error when G_DEFINE_AUTOPTR_CLEANUP_FUNC is not defined.
https://bugs.webkit.org/show_bug.cgi?id=154467

Patch by Konstantin Tokarev <[email protected]> on 2016-02-19
Reviewed by Michael Catanzaro.

* TestWebKitAPI/Tests/WebKit2Gtk/TestAutocleanups.cpp:
(beforeAll):
(afterAll):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (196843 => 196844)


--- trunk/Tools/ChangeLog	2016-02-19 23:56:26 UTC (rev 196843)
+++ trunk/Tools/ChangeLog	2016-02-20 00:01:51 UTC (rev 196844)
@@ -1,3 +1,14 @@
+2016-02-19  Konstantin Tokarev  <[email protected]>
+
+        [GTK] Fixed link error when G_DEFINE_AUTOPTR_CLEANUP_FUNC is not defined.
+        https://bugs.webkit.org/show_bug.cgi?id=154467
+
+        Reviewed by Michael Catanzaro.
+
+        * TestWebKitAPI/Tests/WebKit2Gtk/TestAutocleanups.cpp:
+        (beforeAll):
+        (afterAll):
+
 2016-02-19  Brady Eidson  <[email protected]>
 
         Add "databaseProcessDidCrash" to the WKContextClient; Adopt it in WKTR.

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestAutocleanups.cpp (196843 => 196844)


--- trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestAutocleanups.cpp	2016-02-19 23:56:26 UTC (rev 196843)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestAutocleanups.cpp	2016-02-20 00:01:51 UTC (rev 196844)
@@ -57,8 +57,14 @@
     WebViewTest::add("Autocleanups", "web-process-autocleanups", testWebProcessAutocleanups);
 }
 
-void afterAll()
+#else
+
+void beforeAll()
 {
 }
 
 #endif // G_DEFINE_AUTOPTR_CLEANUP_FUNC
+
+void afterAll()
+{
+}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to