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

Unified Diff: content/browser/in_process_webkit/indexed_db_dispatcher_host.cc

Issue 10778026: Pass intVersion along with the rest of the IDB metadata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove version from open params Created 8 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
« no previous file with comments | « no previous file | content/common/indexed_db/indexed_db_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
index d534692136e89be5047fd0ffe4e8ec5ce189fdfe..b636938cb672c88df753d3f8221f55275e1fdfcb 100644
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
@@ -356,6 +356,7 @@ void IndexedDBDispatcherHost::DatabaseDispatcherHost::OnMetadata(
WebIDBMetadata web_metadata = idb_database->metadata();
metadata->name = web_metadata.name;
metadata->version = web_metadata.version;
+ metadata->intVersion = web_metadata.intVersion;
for (size_t i = 0; i < web_metadata.objectStores.size(); ++i) {
const WebIDBMetadata::ObjectStore& web_store_metadata =
« no previous file with comments | « no previous file | content/common/indexed_db/indexed_db_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698