Index: third_party/WebKit/public/platform/modules/indexeddb/WebIDBObserver.h |
diff --git a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObserver.h b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObserver.h |
index 0f9321270f3112e145da3b937d1e758061476d72..2f06a3d0bd51cfa4d1c5277f8736115054e1c6c5 100644 |
--- a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObserver.h |
+++ b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObserver.h |
@@ -7,11 +7,17 @@ |
#ifndef WebIDBObserver_h |
#define WebIDBObserver_h |
+#include <vector> |
+ |
namespace blink { |
+struct WebIDBObservation; |
+ |
class WebIDBObserver { |
public: |
virtual ~WebIDBObserver() {} |
+ |
+ virtual void onChange(const std::vector<WebIDBObservation>&, std::vector<int32_t> observationIndex) = 0; |
}; |
} // namespace blink |