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

Unified Diff: content/common/indexed_db/proxy_webidbdatabase_impl.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 | « content/common/indexed_db/indexed_db_messages.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/proxy_webidbdatabase_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbdatabase_impl.cc b/content/common/indexed_db/proxy_webidbdatabase_impl.cc
index dce36fdbd144bd6c331f714949ceb6c23c346d52..4a4c27c31ba0138be7277d16c3961ea6d00913a5 100644
--- a/content/common/indexed_db/proxy_webidbdatabase_impl.cc
+++ b/content/common/indexed_db/proxy_webidbdatabase_impl.cc
@@ -48,6 +48,7 @@ WebIDBMetadata RendererWebIDBDatabaseImpl::metadata() const {
WebIDBMetadata web_metadata;
web_metadata.name = idb_metadata.name;
web_metadata.version = idb_metadata.version;
+ web_metadata.intVersion = idb_metadata.intVersion;
web_metadata.objectStores = WebVector<WebIDBMetadata::ObjectStore>(
idb_metadata.object_stores.size());
« no previous file with comments | « content/common/indexed_db/indexed_db_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698