Title: [187051] trunk/Source/WebCore
Revision
187051
Author
achristen...@apple.com
Date
2015-07-20 17:27:56 -0700 (Mon, 20 Jul 2015)

Log Message

Unreviewed build fix after r187049.

* contentextensions/ContentExtension.cpp:
(WebCore::ContentExtensions::ContentExtension::populateDomainCacheIfNeeded):
Can't shrinkToFit HashSets.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (187050 => 187051)


--- trunk/Source/WebCore/ChangeLog	2015-07-21 00:23:05 UTC (rev 187050)
+++ trunk/Source/WebCore/ChangeLog	2015-07-21 00:27:56 UTC (rev 187051)
@@ -1,5 +1,13 @@
 2015-07-20  Alex Christensen  <achristen...@webkit.org>
 
+        Unreviewed build fix after r187049.
+
+        * contentextensions/ContentExtension.cpp:
+        (WebCore::ContentExtensions::ContentExtension::populateDomainCacheIfNeeded):
+        Can't shrinkToFit HashSets.
+
+2015-07-20  Alex Christensen  <achristen...@webkit.org>
+
         [Content Extensions] Cache actions with domains that match everything
         https://bugs.webkit.org/show_bug.cgi?id=147050
 

Modified: trunk/Source/WebCore/contentextensions/ContentExtension.cpp (187050 => 187051)


--- trunk/Source/WebCore/contentextensions/ContentExtension.cpp	2015-07-21 00:23:05 UTC (rev 187050)
+++ trunk/Source/WebCore/contentextensions/ContentExtension.cpp	2015-07-21 00:27:56 UTC (rev 187051)
@@ -133,7 +133,6 @@
             if (!!(action & IfDomainFlag) == m_cachedDomainActions.contains(action))
                 m_cachedUniversalDomainActions.append(static_cast<uint32_t>(action));
         }
-        m_cachedDomainActions.shrinkToFit();
         m_cachedUniversalDomainActions.shrinkToFit();
         m_cachedDomain = domain;
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to