Changeset 121689 in webkit


Ignore:
Timestamp:
Jul 2, 2012 9:59:15 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Christophe Dumez <Christophe Dumez> 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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r121683 r121689  
     12012-07-02  Christophe Dumez  <christophe.dumez@intel.com>
     2
     3        [MICRODATA] Build failure in html/HTMLPropertiesCollection.h
     4        https://bugs.webkit.org/show_bug.cgi?id=90379
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Switch HTMLCollection::append() visibility from private
     9        to protected so that HTMLPropertiesCollection subclass
     10        can call it. This fixes build when MICRODATA flag is
     11        turned on.
     12
     13        No new tests, build fix.
     14
     15        * html/HTMLCollection.h:
     16        (HTMLCollectionCacheBase):
     17
    1182012-07-02  Kwang Yul Seo  <skyul@company100.net>
    219
  • trunk/Source/WebCore/html/HTMLCollection.h

    r121589 r121689  
    8484    void setHasNameCache() const { m_hasNameCache = true; }
    8585
     86    static void append(NodeCacheMap&, const AtomicString&, Element*);
     87
    8688private:
    8789    using DynamicNodeListCacheBase::isRootedAtDocument;
    8890    using DynamicNodeListCacheBase::shouldInvalidateOnAttributeChange;
    8991    using DynamicNodeListCacheBase::clearCache;
    90 
    91     static void append(NodeCacheMap&, const AtomicString&, Element*);
    9292
    9393    mutable NodeCacheMap m_idCache;
Note: See TracChangeset for help on using the changeset viewer.