Title: [200628] trunk/Source/WebKit2
Revision
200628
Author
[email protected]
Date
2016-05-10 10:32:52 -0700 (Tue, 10 May 2016)

Log Message

Fix a deprecation warning.

* DatabaseProcess/EntryPoint/mac/XPCService/DatabaseServiceEntryPoint.mm:
(DatabaseServiceInitializer):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (200627 => 200628)


--- trunk/Source/WebKit2/ChangeLog	2016-05-10 17:27:12 UTC (rev 200627)
+++ trunk/Source/WebKit2/ChangeLog	2016-05-10 17:32:52 UTC (rev 200628)
@@ -1,3 +1,10 @@
+2016-05-10  Anders Carlsson  <[email protected]>
+
+        Fix a deprecation warning.
+
+        * DatabaseProcess/EntryPoint/mac/XPCService/DatabaseServiceEntryPoint.mm:
+        (DatabaseServiceInitializer):
+
 2016-05-10  Tim Horton  <[email protected]>
 
         Clicks do not work in Safari after pressing the Track package button in Gmail

Modified: trunk/Source/WebKit2/DatabaseProcess/EntryPoint/mac/XPCService/DatabaseServiceEntryPoint.mm (200627 => 200628)


--- trunk/Source/WebKit2/DatabaseProcess/EntryPoint/mac/XPCService/DatabaseServiceEntryPoint.mm	2016-05-10 17:27:12 UTC (rev 200627)
+++ trunk/Source/WebKit2/DatabaseProcess/EntryPoint/mac/XPCService/DatabaseServiceEntryPoint.mm	2016-05-10 17:32:52 UTC (rev 200628)
@@ -50,6 +50,9 @@
     XPCServiceInitializer<DatabaseProcess, XPCServiceInitializerDelegate>(adoptOSObject(connection), initializerMessage);
 
 #if HAVE(OS_ACTIVITY)
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
     os_activity_end(activity);
+#pragma clang diagnostic pop
 #endif
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to