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

Unified Diff: content/browser/indexed_db/indexed_db_callbacks.h

Issue 2449953008: Port messages sent by WebIDBDatabaseImpl to Mojo. (Closed)
Patch Set: Address more comments from dcheng@. Created 4 years, 1 month 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
« no previous file with comments | « content/browser/indexed_db/database_impl.cc ('k') | content/browser/indexed_db/indexed_db_callbacks.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/indexed_db/indexed_db_callbacks.h
diff --git a/content/browser/indexed_db/indexed_db_callbacks.h b/content/browser/indexed_db/indexed_db_callbacks.h
index 083f45ec196e68b1f15da6e61ab476dc286df0c9..19f2b9e88098d7948e6539bf5c20bbbdacd31408 100644
--- a/content/browser/indexed_db/indexed_db_callbacks.h
+++ b/content/browser/indexed_db/indexed_db_callbacks.h
@@ -92,8 +92,7 @@ class CONTENT_EXPORT IndexedDBCallbacks
virtual void OnSuccess(IndexedDBReturnValue* value);
// IndexedDBDatabase::GetAll
- virtual void OnSuccessArray(std::vector<IndexedDBReturnValue>* values,
- const IndexedDBKeyPath& key_path);
+ virtual void OnSuccessArray(std::vector<IndexedDBReturnValue>* values);
// IndexedDBDatabase::Put / IndexedDBCursor::Update
virtual void OnSuccess(const IndexedDBKey& key);
@@ -138,7 +137,7 @@ class CONTENT_EXPORT IndexedDBCallbacks
// IndexedDBDatabase callbacks ------------------------
int64_t host_transaction_id_;
url::Origin origin_;
- int32_t ipc_database_id_;
+ bool database_sent_ = false;
// Used to assert that OnSuccess is only called if there was no data loss.
blink::WebIDBDataLoss data_loss_;
« no previous file with comments | « content/browser/indexed_db/database_impl.cc ('k') | content/browser/indexed_db/indexed_db_callbacks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698