Title: [170452] trunk/Source/WebKit2
Revision
170452
Author
m...@apple.com
Date
2014-06-25 17:52:25 -0700 (Wed, 25 Jun 2014)

Log Message

Fixed crashes after r170450.

Reviewed by Tim Horton.

* UIProcess/WebProcessProxy.cpp:
(WebKit::WebProcessProxy::WebProcessProxy): Removed iOS platform #ifdef around
initialization of m_throttler.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (170451 => 170452)


--- trunk/Source/WebKit2/ChangeLog	2014-06-26 00:51:05 UTC (rev 170451)
+++ trunk/Source/WebKit2/ChangeLog	2014-06-26 00:52:25 UTC (rev 170452)
@@ -1,3 +1,13 @@
+2014-06-25  Dan Bernstein  <m...@apple.com>
+
+        Fixed crashes after r170450.
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/WebProcessProxy.cpp:
+        (WebKit::WebProcessProxy::WebProcessProxy): Removed iOS platform #ifdef around
+        initialization of m_throttler.
+
 2014-06-25  Beth Dakin  <bda...@apple.com>
 
         Crash in ScrollingTree::isRubberBandInProgress()

Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp (170451 => 170452)


--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp	2014-06-26 00:51:05 UTC (rev 170451)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp	2014-06-26 00:52:25 UTC (rev 170452)
@@ -97,9 +97,7 @@
     , m_processSuppressionEnabled(false)
 #endif
     , m_numberOfTimesSuddenTerminationWasDisabled(0)
-#if PLATFORM(IOS)
     , m_throttler(std::make_unique<ProcessThrottler>(this))
-#endif
 {
     connect();
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to