Index: Source/modules/indexeddb/DOMWindowIndexedDatabase.h |
diff --git a/Source/modules/indexeddb/DOMWindowIndexedDatabase.h b/Source/modules/indexeddb/DOMWindowIndexedDatabase.h |
index ea8f4d8c9cf0f4fdf8b971e27e7fad0d36b6db9c..500597178bd6a183d62ca25786f55c4889d0cf6a 100644 |
--- a/Source/modules/indexeddb/DOMWindowIndexedDatabase.h |
+++ b/Source/modules/indexeddb/DOMWindowIndexedDatabase.h |
@@ -37,20 +37,20 @@ class DOMWindow; |
class DOMWindowIndexedDatabase FINAL : public DOMWindowProperty, public Supplement<DOMWindow> { |
public: |
virtual ~DOMWindowIndexedDatabase(); |
- static DOMWindowIndexedDatabase* from(DOMWindow*); |
+ static DOMWindowIndexedDatabase& from(DOMWindow&); |
- static IDBFactory* indexedDB(DOMWindow*); |
+ static IDBFactory* indexedDB(DOMWindow&); |
virtual void willDestroyGlobalObjectInFrame() OVERRIDE; |
virtual void willDetachGlobalObjectFromFrame() OVERRIDE; |
private: |
- explicit DOMWindowIndexedDatabase(DOMWindow*); |
+ explicit DOMWindowIndexedDatabase(DOMWindow&); |
IDBFactory* indexedDB(); |
static const char* supplementName(); |
- DOMWindow* m_window; |
+ DOMWindow& m_window; |
RefPtr<IDBFactory> m_idbFactory; |
}; |