[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 11:46:54 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e1a567e41ca08cdb330998446b626fe16ab93bcb
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Aug 6 16:43:25 2010 +0000

    2010-08-06  Gyuyoung Kim  <gyuyoung.kim at 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.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64855 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 65d9731..c70373d 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-08-06  Gyuyoung Kim  <gyuyoung.kim at 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. 
+
 2010-08-06  Martin Robinson  <mrobinson at igalia.com>
 
         Reviewed by Gustavo Noronha Silva.
diff --git a/WebCore/dom/XMLDocumentParser.h b/WebCore/dom/XMLDocumentParser.h
index 4b86a8a..ddc9260 100644
--- a/WebCore/dom/XMLDocumentParser.h
+++ b/WebCore/dom/XMLDocumentParser.h
@@ -92,6 +92,11 @@ namespace WebCore {
 
     static bool parseDocumentFragment(const String&, DocumentFragment*, Element* parent = 0, FragmentScriptingPermission = FragmentScriptingAllowed);
 
+        // WMLErrorHandling uses these functions.
+        virtual bool wellFormed() const { return !m_sawError; }
+        virtual int lineNumber() const;
+        virtual int columnNumber() const;
+
     private:
         // From DocumentParser
         virtual void insert(const SegmentedString&);
@@ -100,9 +105,6 @@ namespace WebCore {
         virtual bool finishWasCalled();
         virtual bool isWaitingForScripts() const;
         virtual void stopParsing();
-        virtual bool wellFormed() const { return !m_sawError; }
-        virtual int lineNumber() const;
-        virtual int columnNumber() const;
 
         // from CachedResourceClient
         virtual void notifyFinished(CachedResource*);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list