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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.h

Issue 2125213002: [IndexedDB] Propogating changes to observers : Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lifetime
Patch Set: Minor typecasting 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/WebIDBObserverImpl.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.h b/third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.h
index 97c53bb53cd009921f37bd19d5bbe2df43628c6d..9c8825608b94f8de74434617fb0b4e3be70da054 100644
--- a/third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.h
+++ b/third_party/WebKit/Source/modules/indexeddb/WebIDBObserverImpl.h
@@ -5,12 +5,14 @@
#ifndef WebIDBObserverImpl_h
#define WebIDBObserverImpl_h
+#include "modules/indexeddb/IDBObserver.h"
#include "platform/heap/Persistent.h"
#include "public/platform/modules/indexeddb/WebIDBObserver.h"
namespace blink {
class IDBObserver;
+struct WebIDBObservation;
class WebIDBObserverImpl final : public WebIDBObserver {
USING_FAST_MALLOC(WebIDBObserverImpl);
@@ -22,6 +24,12 @@ public:
void setId(int32_t);
+ bool transaction() const { return m_observer->transaction(); }
+ bool noRecords() const { return m_observer->noRecords(); }
+ bool values() const { return m_observer->values(); }
+ const std::bitset<WebIDBOperationTypeCount>& operationTypes() const { return m_observer->operationTypes(); }
+ void onChange(const WebVector<WebIDBObservation>&, const WebVector<int32_t>& observationIndex);
+
private:
enum { kInvalidObserverId = -1 };

Powered by Google App Engine
This is Rietveld 408576698