| Index: third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.cpp b/third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.cpp
|
| index 3610e284300e18bc3879f0e27cc4158f5083ac62..29cdda2f6de68d20ad283f31785824ed2996823e 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.cpp
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "modules/indexeddb/WebIDBObserverImpl.h"
|
|
|
| -#include "modules/indexeddb/IDBObserver.h"
|
| #include "wtf/PtrUtil.h"
|
|
|
| namespace blink {
|
| @@ -34,4 +33,9 @@ void WebIDBObserverImpl::setId(int32_t id)
|
| m_id = id;
|
| }
|
|
|
| +void WebIDBObserverImpl::onChange(const WebVector<WebIDBObservation>& observations, WebVector<int32_t> observationIndex)
|
| +{
|
| + m_observer->onChange(m_id, observations, std::move(observationIndex));
|
| +}
|
| +
|
| } // namespace blink
|
|
|