| Index: third_party/WebKit/Source/core/fetch/DocumentResource.cpp
|
| diff --git a/third_party/WebKit/Source/core/fetch/DocumentResource.cpp b/third_party/WebKit/Source/core/fetch/DocumentResource.cpp
|
| index f6b8b51e664bc1c2c67dc98fb619f533dc3d4a75..bdfdfeab1a838cd7e35c3807c0d355d5c082e733 100644
|
| --- a/third_party/WebKit/Source/core/fetch/DocumentResource.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/DocumentResource.cpp
|
| @@ -54,14 +54,14 @@ DEFINE_TRACE(DocumentResource)
|
| Resource::trace(visitor);
|
| }
|
|
|
| -void DocumentResource::checkNotify()
|
| +void DocumentResource::checkNotify(MarkFinishedOption markFinishedOption)
|
| {
|
| if (m_data && mimeTypeAllowed()) {
|
| // We don't need to create a new frame because the new document belongs to the parent UseElement.
|
| m_document = createDocument(response().url());
|
| m_document->setContent(decodedText());
|
| }
|
| - Resource::checkNotify();
|
| + Resource::checkNotify(markFinishedOption);
|
| }
|
|
|
| bool DocumentResource::mimeTypeAllowed() const
|
|
|