Index: Source/bindings/core/v8/DOMWrapperMap.h |
diff --git a/Source/bindings/core/v8/DOMWrapperMap.h b/Source/bindings/core/v8/DOMWrapperMap.h |
index 2f5394c6c72061d7ecd16f81af554ab151fe1bea..825a0a3b7ea3b711306496749281dbcd7c485a41 100644 |
--- a/Source/bindings/core/v8/DOMWrapperMap.h |
+++ b/Source/bindings/core/v8/DOMWrapperMap.h |
@@ -48,7 +48,7 @@ public: |
{ |
} |
- v8::Handle<v8::Object> newLocal(KeyType* key, v8::Isolate* isolate) |
+ v8::Handle<v8::Object> newLocal(v8::Isolate* isolate, KeyType* key) |
{ |
return m_map.Get(key); |
} |
@@ -58,7 +58,7 @@ public: |
return m_map.SetReturnValue(key, returnValue); |
} |
- void setReference(const v8::Persistent<v8::Object>& parent, KeyType* key, v8::Isolate* isolate) |
+ void setReference(v8::Isolate* isolate, const v8::Persistent<v8::Object>& parent, KeyType* key) |
{ |
m_map.SetReference(key, parent); |
} |