| Index: third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
|
| index 29c943853a78247c6d80ef7b236ad0a732b74526..631c326875294c8c4ab76b02d4d2f085f6c696a1 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h
|
| @@ -75,8 +75,8 @@ public:
|
| // Implement the IDBTransaction IDL
|
| const String& mode() const;
|
| PassRefPtrWillBeRawPtr<DOMStringList> objectStoreNames() const;
|
| - IDBDatabase* db() const;
|
| - DOMException* error() const;
|
| + IDBDatabase* db() const { return m_database.get(); }
|
| + DOMException* error() const { return m_error; }
|
| IDBObjectStore* objectStore(const String& name, ExceptionState&);
|
| void abort(ExceptionState&);
|
|
|
|
|