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

eric at webkit.org eric at webkit.org
Wed Dec 22 11:49:18 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 4b7acc3c0f91883aef074d908fd3ba3a1507e12c
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Aug 8 06:45:34 2010 +0000

    2010-08-07  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
            Reviewed by Eric Seidel.
    
            [WML] Add KURL parameter to WMLDocument::create()
            https://bugs.webkit.org/show_bug.cgi?id=43173
    
            To fix build break in WML, url parameter is added. Because,
            Document class has url parameter.
    
            * wml/WMLDocument.cpp:
            (WebCore::WMLDocument::WMLDocument):
            * wml/WMLDocument.h:
            (WebCore::WMLDocument::create): Add an url parameter to create() method
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64941 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 67ffc79..acbc1d6 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,4 +1,18 @@
 2010-08-07  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
+        Reviewed by Eric Seidel.
+
+        [WML] Add KURL parameter to WMLDocument::create() 
+        https://bugs.webkit.org/show_bug.cgi?id=43173
+
+        To fix build break in WML, url parameter is added. Because, 
+        Document class has url parameter.
+
+        * wml/WMLDocument.cpp:
+        (WebCore::WMLDocument::WMLDocument):
+        * wml/WMLDocument.h:
+        (WebCore::WMLDocument::create): Add an url parameter to create() method
+
+2010-08-07  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
 
         Reviewed by Eric Seidel.
 
diff --git a/WebCore/wml/WMLDocument.cpp b/WebCore/wml/WMLDocument.cpp
index 0ac8f90..9781a68 100644
--- a/WebCore/wml/WMLDocument.cpp
+++ b/WebCore/wml/WMLDocument.cpp
@@ -34,8 +34,8 @@
 
 namespace WebCore {
 
-WMLDocument::WMLDocument(Frame* frame)
-    : Document(frame, false, false) 
+WMLDocument::WMLDocument(Frame* frame, const KURL& url)
+    : Document(frame, url, false, false) 
     , m_activeCard(0)
 {
     clearXMLVersion();
diff --git a/WebCore/wml/WMLDocument.h b/WebCore/wml/WMLDocument.h
index 9053518..3057d9b 100644
--- a/WebCore/wml/WMLDocument.h
+++ b/WebCore/wml/WMLDocument.h
@@ -32,9 +32,9 @@ class WMLCardElement;
 
 class WMLDocument : public Document {
 public:
-    static PassRefPtr<WMLDocument> create(Frame* frame)
+    static PassRefPtr<WMLDocument> create(Frame* frame, const KURL& url)
     {
-        return adoptRef(new WMLDocument(frame));
+        return adoptRef(new WMLDocument(frame, url));
     }
 
     virtual ~WMLDocument();
@@ -47,7 +47,7 @@ public:
     WMLCardElement* activeCard() const { return m_activeCard; }
 
 private:
-    WMLDocument(Frame*);
+    WMLDocument(Frame*, const KURL&);
     WMLCardElement* m_activeCard;
 };
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list