Title: [121689] trunk/Source/WebCore
Revision
121689
Author
[email protected]
Date
2012-07-02 09:59:15 -0700 (Mon, 02 Jul 2012)

Log Message

[MICRODATA] Build failure in html/HTMLPropertiesCollection.h
https://bugs.webkit.org/show_bug.cgi?id=90379

Patch by Christophe Dumez <[email protected]> on 2012-07-02
Reviewed by Ryosuke Niwa.

Switch HTMLCollection::append() visibility from private
to protected so that HTMLPropertiesCollection subclass
can call it. This fixes build when MICRODATA flag is
turned on.

No new tests, build fix.

* html/HTMLCollection.h:
(HTMLCollectionCacheBase):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121688 => 121689)


--- trunk/Source/WebCore/ChangeLog	2012-07-02 16:50:11 UTC (rev 121688)
+++ trunk/Source/WebCore/ChangeLog	2012-07-02 16:59:15 UTC (rev 121689)
@@ -1,3 +1,20 @@
+2012-07-02  Christophe Dumez  <[email protected]>
+
+        [MICRODATA] Build failure in html/HTMLPropertiesCollection.h
+        https://bugs.webkit.org/show_bug.cgi?id=90379
+
+        Reviewed by Ryosuke Niwa.
+
+        Switch HTMLCollection::append() visibility from private
+        to protected so that HTMLPropertiesCollection subclass
+        can call it. This fixes build when MICRODATA flag is
+        turned on.
+
+        No new tests, build fix.
+
+        * html/HTMLCollection.h:
+        (HTMLCollectionCacheBase):
+
 2012-07-02  Kwang Yul Seo  <[email protected]>
 
         A start "body" tag in the "in body" insertion mode is a parse error

Modified: trunk/Source/WebCore/html/HTMLCollection.h (121688 => 121689)


--- trunk/Source/WebCore/html/HTMLCollection.h	2012-07-02 16:50:11 UTC (rev 121688)
+++ trunk/Source/WebCore/html/HTMLCollection.h	2012-07-02 16:59:15 UTC (rev 121689)
@@ -83,13 +83,13 @@
     bool hasNameCache() const { return m_hasNameCache; }
     void setHasNameCache() const { m_hasNameCache = true; }
 
+    static void append(NodeCacheMap&, const AtomicString&, Element*);
+
 private:
     using DynamicNodeListCacheBase::isRootedAtDocument;
     using DynamicNodeListCacheBase::shouldInvalidateOnAttributeChange;
     using DynamicNodeListCacheBase::clearCache;
 
-    static void append(NodeCacheMap&, const AtomicString&, Element*);
-
     mutable NodeCacheMap m_idCache;
     mutable NodeCacheMap m_nameCache;
     mutable unsigned m_cachedElementsArrayOffset;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to