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

Log Message

Fix more deprecation warnings.

* NetworkProcess/EntryPoint/mac/XPCService/NetworkServiceEntryPoint.mm:
(NetworkServiceInitializer):
* PluginProcess/EntryPoint/mac/XPCService/PluginServiceEntryPoint.mm:
(PluginServiceInitializer):
* WebProcess/EntryPoint/mac/XPCService/WebContentServiceEntryPoint.mm:
(WebContentServiceInitializer):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (200630 => 200631)


--- trunk/Source/WebKit2/ChangeLog	2016-05-10 17:45:47 UTC (rev 200630)
+++ trunk/Source/WebKit2/ChangeLog	2016-05-10 18:34:52 UTC (rev 200631)
@@ -1,3 +1,14 @@
+2016-05-10  Anders Carlsson  <[email protected]>
+
+        Fix more deprecation warnings.
+
+        * NetworkProcess/EntryPoint/mac/XPCService/NetworkServiceEntryPoint.mm:
+        (NetworkServiceInitializer):
+        * PluginProcess/EntryPoint/mac/XPCService/PluginServiceEntryPoint.mm:
+        (PluginServiceInitializer):
+        * WebProcess/EntryPoint/mac/XPCService/WebContentServiceEntryPoint.mm:
+        (WebContentServiceInitializer):
+
 2016-05-10  Chris Dumez  <[email protected]>
 
         [SpeculativeValidation] Do not start a preload if there is already one pending

Modified: trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkServiceEntryPoint.mm (200630 => 200631)


--- trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkServiceEntryPoint.mm	2016-05-10 17:45:47 UTC (rev 200630)
+++ trunk/Source/WebKit2/NetworkProcess/EntryPoint/mac/XPCService/NetworkServiceEntryPoint.mm	2016-05-10 18:34:52 UTC (rev 200631)
@@ -66,6 +66,9 @@
     XPCServiceInitializer<NetworkProcess, NetworkServiceInitializerDelegate>(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
 }

Modified: trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginServiceEntryPoint.mm (200630 => 200631)


--- trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginServiceEntryPoint.mm	2016-05-10 17:45:47 UTC (rev 200630)
+++ trunk/Source/WebKit2/PluginProcess/EntryPoint/mac/XPCService/PluginServiceEntryPoint.mm	2016-05-10 18:34:52 UTC (rev 200631)
@@ -90,7 +90,10 @@
     XPCServiceInitializer<PluginProcess, PluginServiceInitializerDelegate>(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
 #endif // ENABLE(NETSCAPE_PLUGIN_API)
 }

Modified: trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentServiceEntryPoint.mm (200630 => 200631)


--- trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentServiceEntryPoint.mm	2016-05-10 17:45:47 UTC (rev 200630)
+++ trunk/Source/WebKit2/WebProcess/EntryPoint/mac/XPCService/WebContentServiceEntryPoint.mm	2016-05-10 18:34:52 UTC (rev 200631)
@@ -66,6 +66,9 @@
     XPCServiceInitializer<WebProcess, 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