| Index: Source/core/dom/DocumentParser.cpp
|
| diff --git a/Source/core/dom/DocumentParser.cpp b/Source/core/dom/DocumentParser.cpp
|
| index dcafb092c930feb9cbfc025de4d4ccf1f7cea0e5..fa6d9e8356f9afc98c91c806aebabee39f8f46e5 100644
|
| --- a/Source/core/dom/DocumentParser.cpp
|
| +++ b/Source/core/dom/DocumentParser.cpp
|
| @@ -25,6 +25,7 @@
|
|
|
| #include "config.h"
|
| #include "core/dom/DocumentParser.h"
|
| +#include "core/fetch/TextResourceDecoder.h"
|
|
|
| #include "wtf/Assertions.h"
|
|
|
| @@ -46,6 +47,16 @@ DocumentParser::~DocumentParser()
|
| ASSERT(!m_document);
|
| }
|
|
|
| +void DocumentParser::setDecoder(PassRefPtr<TextResourceDecoder>)
|
| +{
|
| + ASSERT_NOT_REACHED();
|
| +}
|
| +
|
| +PassRefPtr<TextResourceDecoder> DocumentParser::decoder()
|
| +{
|
| + return 0;
|
| +}
|
| +
|
| void DocumentParser::startParsing()
|
| {
|
| m_state = ParsingState;
|
|
|