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

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

Issue 2449953008: Port messages sent by WebIDBDatabaseImpl to Mojo. (Closed)
Patch Set: Address cmumford@ and jsbell@'s comments. 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
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 53097cbaad6f6cf619fe7ebc88b0653722af2640..87fb7303d6cfc68673f4ce5ab246c659b08f3e41 100644
--- a/content/browser/indexed_db/indexed_db_callbacks.h
+++ b/content/browser/indexed_db/indexed_db_callbacks.h
@@ -93,8 +93,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);
@@ -139,7 +138,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_;

Powered by Google App Engine
This is Rietveld 408576698