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

Unified Diff: content/common/indexed_db/proxy_webidbfactory_impl.cc

Issue 10829013: Chrome side changes for integer versions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add #include that windows needs 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
Index: content/common/indexed_db/proxy_webidbfactory_impl.cc
diff --git a/content/common/indexed_db/proxy_webidbfactory_impl.cc b/content/common/indexed_db/proxy_webidbfactory_impl.cc
index 6a55ead83a22475e1392900427dd2e122a1343e5..d4bd56917e75c255aee35eaff511c68213866e0b 100644
--- a/content/common/indexed_db/proxy_webidbfactory_impl.cc
+++ b/content/common/indexed_db/proxy_webidbfactory_impl.cc
@@ -35,6 +35,7 @@ void RendererWebIDBFactoryImpl::getDatabaseNames(
void RendererWebIDBFactoryImpl::open(
const WebString& name,
+ long long version,
WebIDBCallbacks* callbacks,
const WebSecurityOrigin& origin,
WebFrame* web_frame,
@@ -44,7 +45,7 @@ void RendererWebIDBFactoryImpl::open(
IndexedDBDispatcher* dispatcher =
IndexedDBDispatcher::ThreadSpecificInstance();
dispatcher->RequestIDBFactoryOpen(
- name, callbacks, origin.databaseIdentifier(), web_frame);
+ name, version, callbacks, origin.databaseIdentifier(), web_frame);
}
void RendererWebIDBFactoryImpl::deleteDatabase(
« no previous file with comments | « content/common/indexed_db/proxy_webidbfactory_impl.h ('k') | webkit/support/test_webkit_platform_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698