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

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

Issue 2141493002: Add missing traces for Supplement<> classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: temp Created 4 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
Index: third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp b/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp
index f8ddc1a47752a86fdbd827362edc2c489373b2c5..8c17873c25c59185d32a6211222e96b94dc8f678 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.cpp
@@ -31,6 +31,12 @@ const char* IndexedDBClient::supplementName()
return "IndexedDBClient";
}
+DEFINE_TRACE(IndexedDBClient)
+{
+ Supplement<LocalFrame>::trace(visitor);
+ Supplement<WorkerClients>::trace(visitor);
+}
+
void provideIndexedDBClientTo(LocalFrame& frame, IndexedDBClient* client)
{
frame.provideSupplement(IndexedDBClient::supplementName(), client);

Powered by Google App Engine
This is Rietveld 408576698