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

Unified Diff: third_party/WebKit/Source/core/dom/ExecutionContext.h

Issue 2552993002: Rename activeDOMObjectsAreStopped to isContextDestroyed (Closed)
Patch Set: 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/core/dom/ExecutionContext.h
diff --git a/third_party/WebKit/Source/core/dom/ExecutionContext.h b/third_party/WebKit/Source/core/dom/ExecutionContext.h
index a972da5e6203a8df0dbe4b4c44c32c6d30919ab9..c56d1934af16c75e8f4c4b5bb8fbb904e606a559 100644
--- a/third_party/WebKit/Source/core/dom/ExecutionContext.h
+++ b/third_party/WebKit/Source/core/dom/ExecutionContext.h
@@ -144,9 +144,7 @@ class CORE_EXPORT ExecutionContext : public ContextLifecycleNotifier,
bool activeDOMObjectsAreSuspended() const {
return m_activeDOMObjectsAreSuspended;
}
- bool activeDOMObjectsAreStopped() const {
- return m_activeDOMObjectsAreStopped;
- }
+ bool isContextDestroyed() const { return m_isContextDestroyed; }
// Called after the construction of an ActiveDOMObject to synchronize suspend
// state.
@@ -202,7 +200,7 @@ class CORE_EXPORT ExecutionContext : public ContextLifecycleNotifier,
HeapVector<Member<ErrorEvent>> m_pendingExceptions;
bool m_activeDOMObjectsAreSuspended;
- bool m_activeDOMObjectsAreStopped;
+ bool m_isContextDestroyed;
Member<PublicURLManager> m_publicURLManager;
« no previous file with comments | « third_party/WebKit/Source/core/dom/ActiveDOMObject.cpp ('k') | third_party/WebKit/Source/core/dom/ExecutionContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698