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

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp

Issue 2587913002: Rename activeDOMObjectsAreSuspended to isContextSuspended (Closed)
Patch Set: temp Created 4 years 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/modules/filesystem/FileSystemCallbacks.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp b/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp
index 1a1ef6deb2e3fb7f3108628f2d88dae863bc0d1e..769aea171a562e01046180c28d2bd7e991e692bf 100644
--- a/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp
@@ -80,7 +80,7 @@ void FileSystemCallbacksBase::didFail(int code) {
bool FileSystemCallbacksBase::shouldScheduleCallback() const {
return !shouldBlockUntilCompletion() && m_executionContext &&
- m_executionContext->activeDOMObjectsAreSuspended();
+ m_executionContext->isContextSuspended();
}
template <typename CB, typename CBArg>

Powered by Google App Engine
This is Rietveld 408576698