Index: Source/bindings/v8/DOMWrapperWorld.h |
diff --git a/Source/bindings/v8/DOMWrapperWorld.h b/Source/bindings/v8/DOMWrapperWorld.h |
index 608d8dbd4272c339a7c7c266a020631780255fc9..b2670f6ae4beebe3fed5cda589ba6acb2f85e50e 100644 |
--- a/Source/bindings/v8/DOMWrapperWorld.h |
+++ b/Source/bindings/v8/DOMWrapperWorld.h |
@@ -103,10 +103,10 @@ public: |
int worldId() const { return m_worldId; } |
int extensionGroup() const { return m_extensionGroup; } |
- DOMDataStore* isolatedWorldDOMDataStore() const |
+ DOMDataStore& isolatedWorldDOMDataStore() const |
{ |
ASSERT(isIsolatedWorld()); |
- return m_domDataStore.get(); |
+ return *m_domDataStore; |
} |
v8::Handle<v8::Context> context(ScriptController&); |