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

Unified Diff: content/child/indexed_db/webidbdatabase_impl.cc

Issue 2125213002: [IndexedDB] Propogating changes to observers : Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lifetime
Patch Set: Implements IDBObserverChanges IDL records map 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: content/child/indexed_db/webidbdatabase_impl.cc
diff --git a/content/child/indexed_db/webidbdatabase_impl.cc b/content/child/indexed_db/webidbdatabase_impl.cc
index 1895b5aff3b5ce6392a2da29a7175dd259e85a52..05a8d02e0ffa2b67478ceba6899787af50804b6c 100644
--- a/content/child/indexed_db/webidbdatabase_impl.cc
+++ b/content/child/indexed_db/webidbdatabase_impl.cc
@@ -115,10 +115,6 @@ int32_t WebIDBDatabaseImpl::addObserver(
return observer_id;
}
-bool WebIDBDatabaseImpl::containsObserverId(int32_t id) const {
- return ContainsValue(observer_ids_, id);
-}
-
void WebIDBDatabaseImpl::removeObservers(
const std::vector<int32_t>& observer_ids_to_remove) {
for (int32_t id : observer_ids_to_remove)

Powered by Google App Engine
This is Rietveld 408576698