Changeset 64930 in webkit


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

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

Reviewed by Eric Seidel.

[WML] Change DocumentParser with ScriptableDocumentParser in WMLDocument
https://bugs.webkit.org/show_bug.cgi?id=43174

  • wml/WMLDocument.cpp: (WebCore::WMLDocument::finishedParsing): Change DocumentParser with ScriptableDocumentParser.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64926 r64930  
     12010-08-07  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [WML] Change DocumentParser with ScriptableDocumentParser in WMLDocument
     6        https://bugs.webkit.org/show_bug.cgi?id=43174
     7
     8        * wml/WMLDocument.cpp:
     9        (WebCore::WMLDocument::finishedParsing): Change DocumentParser with ScriptableDocumentParser.
     10
    1112010-08-07  Dan Bernstein  <mitz@apple.com>
    212
  • trunk/WebCore/wml/WMLDocument.cpp

    r61104 r64930  
    2727#include "Frame.h"
    2828#include "Page.h"
    29 #include "DocumentParser.h"
     29#include "ScriptableDocumentParser.h"
    3030#include "WMLCardElement.h"
    3131#include "WMLErrorHandling.h"
     
    4848void WMLDocument::finishedParsing()
    4949{
    50     if (DocumentParser* parser = this->parser()) {
     50    if (ScriptableDocumentParser* parser = this->scriptableDocumentParser()) {
    5151        if (!parser->wellFormed()) {
    5252            Document::finishedParsing();
Note: See TracChangeset for help on using the changeset viewer.