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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp

Issue 2629593004: Disambiguate LifecycleObserver::contextDestroyed (Closed)
Patch Set: temp Created 3 years, 11 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
Index: third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
index 72d7eb4d532fd1c6ff953f96826d8b3194c0707a..088ff5b857f354b73ece4f0db0baf0aa7ee2fca1 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
@@ -67,8 +67,8 @@ DEFINE_TRACE(IDBOpenDBRequest) {
IDBRequest::trace(visitor);
}
-void IDBOpenDBRequest::contextDestroyed() {
- IDBRequest::contextDestroyed();
+void IDBOpenDBRequest::contextDestroyed(ExecutionContext* destroyedContext) {
+ IDBRequest::contextDestroyed(destroyedContext);
if (m_databaseCallbacks)
m_databaseCallbacks->detachWebCallbacks();
}

Powered by Google App Engine
This is Rietveld 408576698