Title: [197882] trunk/Source/WebKit2
Revision
197882
Author
[email protected]
Date
2016-03-09 13:31:03 -0800 (Wed, 09 Mar 2016)

Log Message

Unreviewed, rolling out r197698.
https://bugs.webkit.org/show_bug.cgi?id=155252

Caused assertions, and wasn't reviewed by a WK2 owner
(Requested by andersca on #webkit).

Reverted changeset:

"Last opened tab does not receive
SetHiddenPageTimerThrottlingIncreaseLimit message"
https://bugs.webkit.org/show_bug.cgi?id=155126
http://trac.webkit.org/changeset/197698

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (197881 => 197882)


--- trunk/Source/WebKit2/ChangeLog	2016-03-09 21:30:45 UTC (rev 197881)
+++ trunk/Source/WebKit2/ChangeLog	2016-03-09 21:31:03 UTC (rev 197882)
@@ -1,3 +1,18 @@
+2016-03-09  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r197698.
+        https://bugs.webkit.org/show_bug.cgi?id=155252
+
+        Caused assertions, and wasn't reviewed by a WK2 owner
+        (Requested by andersca on #webkit).
+
+        Reverted changeset:
+
+        "Last opened tab does not receive
+        SetHiddenPageTimerThrottlingIncreaseLimit message"
+        https://bugs.webkit.org/show_bug.cgi?id=155126
+        http://trac.webkit.org/changeset/197698
+
 2016-03-09  Conrad Shultz  <[email protected]>
 
         WebsiteDataStore::Configuration::legacyWebsiteDataStoreConfiguration() should respect the passed-in configuration

Modified: trunk/Source/WebKit2/UIProcess/WebProcessPool.cpp (197881 => 197882)


--- trunk/Source/WebKit2/UIProcess/WebProcessPool.cpp	2016-03-09 21:30:45 UTC (rev 197881)
+++ trunk/Source/WebKit2/UIProcess/WebProcessPool.cpp	2016-03-09 21:31:03 UTC (rev 197882)
@@ -163,8 +163,7 @@
     , m_memoryCacheDisabled(false)
     , m_userObservablePageCounter([this](RefCounterEvent) { updateProcessSuppressionState(); })
     , m_processSuppressionDisabledForPageCounter([this](RefCounterEvent) { updateProcessSuppressionState(); })
-    , m_hiddenPageThrottlingAutoIncreasesCounter([this](RefCounterEvent) { m_hiddenPageThrottlingTimer.startOneShot(0); })
-    , m_hiddenPageThrottlingTimer(*this, &WebProcessPool::updateHiddenPageThrottlingAutoIncreaseLimit)
+    , m_hiddenPageThrottlingAutoIncreasesCounter([this](RefCounterEvent) { updateHiddenPageThrottlingAutoIncreaseLimit(); })
 {
     for (auto& scheme : m_configuration->alwaysRevalidatedURLSchemes())
         m_schemesToRegisterAsAlwaysRevalidated.add(scheme);

Modified: trunk/Source/WebKit2/UIProcess/WebProcessPool.h (197881 => 197882)


--- trunk/Source/WebKit2/UIProcess/WebProcessPool.h	2016-03-09 21:30:45 UTC (rev 197881)
+++ trunk/Source/WebKit2/UIProcess/WebProcessPool.h	2016-03-09 21:31:03 UTC (rev 197882)
@@ -522,7 +522,6 @@
     UserObservablePageCounter m_userObservablePageCounter;
     ProcessSuppressionDisabledCounter m_processSuppressionDisabledForPageCounter;
     HiddenPageThrottlingAutoIncreasesCounter m_hiddenPageThrottlingAutoIncreasesCounter;
-    WebCore::Timer m_hiddenPageThrottlingTimer;
 
 #if PLATFORM(COCOA)
     RetainPtr<NSMutableDictionary> m_bundleParameters;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to