Changeset 64941 in webkit


Ignore:
Timestamp:
Aug 7, 2010 11:45:34 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-08-07 Gyuyoung Kim <gyuyoung.kim@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
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64940 r64941  
     12010-08-07  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2        Reviewed by Eric Seidel.
     3
     4        [WML] Add KURL parameter to WMLDocument::create()
     5        https://bugs.webkit.org/show_bug.cgi?id=43173
     6
     7        To fix build break in WML, url parameter is added. Because,
     8        Document class has url parameter.
     9
     10        * wml/WMLDocument.cpp:
     11        (WebCore::WMLDocument::WMLDocument):
     12        * wml/WMLDocument.h:
     13        (WebCore::WMLDocument::create): Add an url parameter to create() method
     14
    1152010-08-07  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    216
  • trunk/WebCore/wml/WMLDocument.cpp

    r64930 r64941  
    3535namespace WebCore {
    3636
    37 WMLDocument::WMLDocument(Frame* frame)
    38     : Document(frame, false, false)
     37WMLDocument::WMLDocument(Frame* frame, const KURL& url)
     38    : Document(frame, url, false, false)
    3939    , m_activeCard(0)
    4040{
  • trunk/WebCore/wml/WMLDocument.h

    r47313 r64941  
    3333class WMLDocument : public Document {
    3434public:
    35     static PassRefPtr<WMLDocument> create(Frame* frame)
     35    static PassRefPtr<WMLDocument> create(Frame* frame, const KURL& url)
    3636    {
    37         return adoptRef(new WMLDocument(frame));
     37        return adoptRef(new WMLDocument(frame, url));
    3838    }
    3939
     
    4848
    4949private:
    50     WMLDocument(Frame*);
     50    WMLDocument(Frame*, const KURL&);
    5151    WMLCardElement* m_activeCard;
    5252};
Note: See TracChangeset for help on using the changeset viewer.