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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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: 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 631c326875294c8c4ab76b02d4d2f085f6c696a1..29c943853a78247c6d80ef7b236ad0a732b74526 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 { return m_database.get(); }
- DOMException* error() const { return m_error; }
+ IDBDatabase* db() const;
+ DOMException* error() const;
IDBObjectStore* objectStore(const String& name, ExceptionState&);
void abort(ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698