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