Index: Source/modules/indexeddb/DOMWindowIndexedDatabase.h |
diff --git a/Source/modules/indexeddb/DOMWindowIndexedDatabase.h b/Source/modules/indexeddb/DOMWindowIndexedDatabase.h |
index 8a68aee1077e99613f7fac45109929dc1d04a132..ebec8a4e78b17274b496c007db1b154afa158fcc 100644 |
--- a/Source/modules/indexeddb/DOMWindowIndexedDatabase.h |
+++ b/Source/modules/indexeddb/DOMWindowIndexedDatabase.h |
@@ -38,20 +38,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; |
}; |