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

Unified Diff: third_party/WebKit/public/platform/modules/indexeddb/WebIDBObservation.h

Issue 2125213002: [IndexedDB] Propogating changes to observers : Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lifetime
Patch Set: Propogating Changes to Renderer 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/public/platform/modules/indexeddb/WebIDBObservation.h
diff --git a/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObservation.h b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObservation.h
new file mode 100644
index 0000000000000000000000000000000000000000..f5fe1eb6d080de609de6d5be4a9026440bfb5185
--- /dev/null
+++ b/third_party/WebKit/public/platform/modules/indexeddb/WebIDBObservation.h
@@ -0,0 +1,24 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WebIDBObservation_h
+#define WebIDBObservation_h
+
+#include "public/platform/modules/indexeddb/WebIDBKeyRange.h"
+#include "public/platform/modules/indexeddb/WebIDBTypes.h"
+#include "public/platform/modules/indexeddb/WebIDBValue.h"
+
+namespace blink {
+
+struct WebIDBObservation {
+
jsbell 2016/07/11 18:25:33 nit: remove blank line
palakj1 2016/07/11 22:25:40 Done.
+ int32_t objectStoreId;
+ WebIDBOperationType type;
+ WebIDBKeyRange keyRange;
+ WebIDBValue value;
+};
+
+} // namespace blink
+
+#endif // WebIDBObservation_h

Powered by Google App Engine
This is Rietveld 408576698