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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h

Issue 2473203002: IndexedDB: Remove m_contextStopped from ActiveDOMObjecs (Closed)
Patch Set: Created 4 years, 1 month 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/indexeddb/IDBTransaction.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
index e3c7bfef504f8c18469a34bdfdde2b1c6ad20551..0bb2f704660e23229426f2b6f75c0b3e21309997 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
@@ -127,9 +127,6 @@ class MODULES_EXPORT IDBTransaction final : public EventTargetWithInlineData,
// ScriptWrappable
bool hasPendingActivity() const final;
- // ActiveDOMObject
- void contextDestroyed() override;
-
// For use in IDBObjectStore.isNewlyCreated(). The rest of the code should use
// IDBObjectStore.isNewlyCreated() instead of calling this method directly.
int64_t oldMaxObjectStoreId() const {
@@ -194,7 +191,6 @@ class MODULES_EXPORT IDBTransaction final : public EventTargetWithInlineData,
State m_state = Active;
bool m_hasPendingActivity = true;
- bool m_contextStopped = false;
Member<DOMException> m_error;
HeapListHashSet<Member<IDBRequest>> m_requestList;

Powered by Google App Engine
This is Rietveld 408576698