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

Unified Diff: third_party/WebKit/Source/core/css/FontFace.cpp

Issue 2433773006: Remove ExecutionContext::activeDOMObjectsAreStopped()
Patch Set: Created 4 years, 2 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/css/FontFace.cpp
diff --git a/third_party/WebKit/Source/core/css/FontFace.cpp b/third_party/WebKit/Source/core/css/FontFace.cpp
index c4ece8e63caca6bc55b6444248f697176e0a1b2d..194ea2742dbf484f0956f0b638f7fe4d53f485ca 100644
--- a/third_party/WebKit/Source/core/css/FontFace.cpp
+++ b/third_party/WebKit/Source/core/css/FontFace.cpp
@@ -652,8 +652,7 @@ bool FontFace::hadBlankText() const {
}
bool FontFace::hasPendingActivity() const {
- return m_status == Loading && getExecutionContext() &&
- !getExecutionContext()->activeDOMObjectsAreStopped();
+ return m_status == Loading && getExecutionContext();
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698