Title: [164841] trunk/Source/WebKit2
- Revision
- 164841
- Author
- [email protected]
- Date
- 2014-02-27 16:09:40 -0800 (Thu, 27 Feb 2014)
Log Message
Fix build after r164832
* UIProcess/DrawingAreaProxyImpl.cpp:
(WebKit::DrawingAreaProxyImpl::waitForAndDispatchDidUpdateBackingStoreState): WebProcessProxy::isLaunching() has been replaced
by WebProcessProxy::state().
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (164840 => 164841)
--- trunk/Source/WebKit2/ChangeLog 2014-02-28 00:04:24 UTC (rev 164840)
+++ trunk/Source/WebKit2/ChangeLog 2014-02-28 00:09:40 UTC (rev 164841)
@@ -1,3 +1,11 @@
+2014-02-27 Martin Robinson <[email protected]>
+
+ Fix build after r164832
+
+ * UIProcess/DrawingAreaProxyImpl.cpp:
+ (WebKit::DrawingAreaProxyImpl::waitForAndDispatchDidUpdateBackingStoreState): WebProcessProxy::isLaunching() has been replaced
+ by WebProcessProxy::state().
+
2014-02-27 Tim Horton <[email protected]>
Crash in RemoteLayerTreePropertyApplier::applyPropertiesToLayer
Modified: trunk/Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp (164840 => 164841)
--- trunk/Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp 2014-02-28 00:04:24 UTC (rev 164840)
+++ trunk/Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp 2014-02-28 00:09:40 UTC (rev 164841)
@@ -279,7 +279,7 @@
if (!m_webPageProxy->isValid())
return;
- if (m_webPageProxy->process().isLaunching())
+ if (m_webPageProxy->process().state() == WebProcessProxy::State::Launching)
return;
// FIXME: waitForAndDispatchImmediately will always return the oldest DidUpdateBackingStoreState message that
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes