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() |