Changeset 64855 in webkit


Ignore:
Timestamp:
Aug 6, 2010 9:43:25 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-06 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Darin Adler.

Change permission to access methods in XMLDocumentParser.h
https://bugs.webkit.org/show_bug.cgi?id=43180

Change permission to access wellFormed(), lineNumber() and columnNumber()
in XMLDocumentParser.h. Because, the methods are used by WML.

  • dom/XMLDocumentParser.h: (WebCore::XMLDocumentParser::wellFormed): Change accebility permission.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64852 r64855  
     12010-08-06  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Change permission to access methods in XMLDocumentParser.h
     6        https://bugs.webkit.org/show_bug.cgi?id=43180
     7
     8        Change permission to access wellFormed(), lineNumber() and columnNumber()
     9        in XMLDocumentParser.h. Because, the methods are used by WML.
     10
     11        * dom/XMLDocumentParser.h:
     12        (WebCore::XMLDocumentParser::wellFormed): Change accebility permission.
     13
    1142010-08-06  Martin Robinson  <mrobinson@igalia.com>
    215
  • trunk/WebCore/dom/XMLDocumentParser.h

    r61985 r64855  
    9393    static bool parseDocumentFragment(const String&, DocumentFragment*, Element* parent = 0, FragmentScriptingPermission = FragmentScriptingAllowed);
    9494
     95        // WMLErrorHandling uses these functions.
     96        virtual bool wellFormed() const { return !m_sawError; }
     97        virtual int lineNumber() const;
     98        virtual int columnNumber() const;
     99
    95100    private:
    96101        // From DocumentParser
     
    101106        virtual bool isWaitingForScripts() const;
    102107        virtual void stopParsing();
    103         virtual bool wellFormed() const { return !m_sawError; }
    104         virtual int lineNumber() const;
    105         virtual int columnNumber() const;
    106108
    107109        // from CachedResourceClient
Note: See TracChangeset for help on using the changeset viewer.