Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: third_party/WebKit/Source/core/fetch/FontResource.cpp

Issue 2210473002: Mark ResourceClient/ImageResourceObserver finished just before notifying (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/fetch/FontResource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/FontResource.cpp b/third_party/WebKit/Source/core/fetch/FontResource.cpp
index 0684def41af36d4a131c456b2748b73b1bbd2e8c..2742dfaf756bd253cb26615dd550e08d117371b9 100644
--- a/third_party/WebKit/Source/core/fetch/FontResource.cpp
+++ b/third_party/WebKit/Source/core/fetch/FontResource.cpp
@@ -173,12 +173,12 @@ void FontResource::allClientsAndObserversRemoved()
Resource::allClientsAndObserversRemoved();
}
-void FontResource::checkNotify()
+void FontResource::checkNotify(MarkFinishedOption markFinishedOption)
{
m_fontLoadShortLimitTimer.stop();
m_fontLoadLongLimitTimer.stop();
- Resource::checkNotify();
+ Resource::checkNotify(markFinishedOption);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698