| Index: third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp b/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| index 73597f35e251ec1421a17d3eb0686f504565fb52..dbd30ff92729ee4a6b2a80e3d0e4a06344138409 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| @@ -59,6 +59,7 @@
|
| #include "core/loader/appcache/ApplicationCacheHost.h"
|
| #include "core/page/NetworkStateNotifier.h"
|
| #include "core/page/Page.h"
|
| +#include "core/paint/FirstMeaningfulPaintDetector.h"
|
| #include "core/svg/graphics/SVGImageChromeClient.h"
|
| #include "core/timing/DOMWindowPerformance.h"
|
| #include "core/timing/Performance.h"
|
| @@ -435,6 +436,8 @@ void FrameFetchContext::didLoadResource(Resource* resource)
|
| {
|
| if (resource->isLoadEventBlockingResourceType())
|
| frame()->loader().checkCompleted();
|
| + if (m_document)
|
| + FirstMeaningfulPaintDetector::from(*m_document).checkNetworkStable();
|
| }
|
|
|
| void FrameFetchContext::addResourceTiming(const ResourceTimingInfo& info)
|
|
|