Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h |
index 9f040d5b481cda8f4bdc11e7bc5ec455d30535dc..772ff4fdb5a2b8878ce6bdf926b5ced6141f6149 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h |
@@ -72,7 +72,7 @@ public: |
// Implement the IDL |
const String& name() const { return m_metadata.name; } |
- unsigned long long version() const { return m_metadata.intVersion; } |
+ unsigned long long version() const { return m_metadata.version; } |
PassRefPtrWillBeRawPtr<DOMStringList> objectStoreNames() const; |
IDBObjectStore* createObjectStore(const String& name, const IDBObjectStoreParameters& options, ExceptionState& exceptionState) { return createObjectStore(name, IDBKeyPath(options.keyPath()), options.autoIncrement(), exceptionState); } |