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

Unified Diff: content/child/indexed_db/indexed_db_callbacks_impl.h

Issue 2601983002: [IndexedDB] Adding transaction and value support to observers (Closed)
Patch Set: Moved transaction creation to SendObservations Created 3 years, 11 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: content/child/indexed_db/indexed_db_callbacks_impl.h
diff --git a/content/child/indexed_db/indexed_db_callbacks_impl.h b/content/child/indexed_db/indexed_db_callbacks_impl.h
index 7b98c65f29700dc877f17195dd8e96980f4cdf49..6d695e73f9c1819c1faf187c59e7e244fbe1e94c 100644
--- a/content/child/indexed_db/indexed_db_callbacks_impl.h
+++ b/content/child/indexed_db/indexed_db_callbacks_impl.h
@@ -10,6 +10,7 @@
namespace blink {
class WebIDBCallbacks;
+struct WebIDBValue;
}
namespace content {
@@ -68,6 +69,9 @@ class IndexedDBCallbacksImpl : public indexed_db::mojom::Callbacks {
DISALLOW_COPY_AND_ASSIGN(InternalState);
};
+ static void ConvertValue(const indexed_db::mojom::ValuePtr& value,
+ blink::WebIDBValue* web_value);
+
IndexedDBCallbacksImpl(std::unique_ptr<blink::WebIDBCallbacks> callbacks,
int64_t transaction_id,
const base::WeakPtr<WebIDBCursorImpl>& cursor,

Powered by Google App Engine
This is Rietveld 408576698