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

Unified Diff: Source/core/dom/ActiveDOMObject.cpp

Issue 401603003: Remove ActiveDOMObject::{,un}setPendingActivity (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 years, 5 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
« no previous file with comments | « Source/core/dom/ActiveDOMObject.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ActiveDOMObject.cpp
diff --git a/Source/core/dom/ActiveDOMObject.cpp b/Source/core/dom/ActiveDOMObject.cpp
index 59a9d893c18ebf808587fbae3bdcae3fafc9a892..dbd704873f3a5dbc03b7287ce56e46723d1e52fc 100644
--- a/Source/core/dom/ActiveDOMObject.cpp
+++ b/Source/core/dom/ActiveDOMObject.cpp
@@ -33,7 +33,6 @@ namespace WebCore {
ActiveDOMObject::ActiveDOMObject(ExecutionContext* executionContext)
: ContextLifecycleObserver(executionContext, ActiveDOMObjectType)
- , m_pendingActivityCount(0)
#if ENABLE(ASSERT)
, m_suspendIfNeededCalled(false)
#endif
@@ -68,7 +67,7 @@ void ActiveDOMObject::suspendIfNeeded()
bool ActiveDOMObject::hasPendingActivity() const
{
- return m_pendingActivityCount;
+ return false;
}
void ActiveDOMObject::suspend()
« no previous file with comments | « Source/core/dom/ActiveDOMObject.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698