Title: [164879] trunk/Source/WebKit2
Revision
164879
Author
bfulg...@apple.com
Date
2014-02-28 13:00:12 -0800 (Fri, 28 Feb 2014)

Log Message

Unreviewed build fix after r164832.

* UIProcess/ios/WebProcessProxyIOS.mm:
(WebKit::WebProcessProxy::updateProcessState): Switch from removed
'isValid' to 'state() != State::Running'

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164878 => 164879)


--- trunk/Source/WebKit2/ChangeLog	2014-02-28 20:40:55 UTC (rev 164878)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-28 21:00:12 UTC (rev 164879)
@@ -1,3 +1,11 @@
+2014-02-28  Brent Fulgham  <bfulg...@apple.com>
+
+        Unreviewed build fix after r164832.
+
+        * UIProcess/ios/WebProcessProxyIOS.mm:
+        (WebKit::WebProcessProxy::updateProcessState): Switch from removed
+        'isValid' to 'state() != State::Running'
+
 2014-02-28  Anders Carlsson  <ander...@apple.com>
 
         VisitedLinkProvider should keep track of processes, not pages

Modified: trunk/Source/WebKit2/UIProcess/ios/WebProcessProxyIOS.mm (164878 => 164879)


--- trunk/Source/WebKit2/UIProcess/ios/WebProcessProxyIOS.mm	2014-02-28 20:40:55 UTC (rev 164878)
+++ trunk/Source/WebKit2/UIProcess/ios/WebProcessProxyIOS.mm	2014-02-28 21:00:12 UTC (rev 164879)
@@ -74,7 +74,7 @@
 void WebProcessProxy::updateProcessState()
 {
 #if USE(XPC_SERVICES)
-    if (!isValid())
+    if (state() != State::Running)
         return;
 
     xpc_connection_t xpcConnection = connection()->xpcConnection();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to