| Index: third_party/WebKit/Source/core/loader/DocumentLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
|
| index 9e23b1a9187c4913ae9207a2e6136cd19addece2..5baca4c35b3c34b8fa870ab631e1c3cf4c4148bf 100644
|
| --- a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
|
| @@ -105,6 +105,7 @@ DocumentLoader::DocumentLoader(LocalFrame* frame, const ResourceRequest& req, co
|
| , m_request(req)
|
| , m_isClientRedirect(false)
|
| , m_replacesCurrentHistoryItem(false)
|
| + , m_dataReceived(false)
|
| , m_navigationType(NavigationTypeOther)
|
| , m_documentLoadTiming(*this)
|
| , m_timeOfLastDataReceived(0.0)
|
| @@ -487,7 +488,7 @@ void DocumentLoader::commitData(const char* bytes, size_t length)
|
| return;
|
|
|
| if (length)
|
| - m_state = DataReceived;
|
| + m_dataReceived = true;
|
|
|
| m_writer->addData(bytes, length);
|
| }
|
|
|