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

Unified Diff: Source/bindings/core/v8/DOMWrapperMap.h

Issue 1110433002: Make Isolate as the first argument. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix Compile error Created 5 years, 8 months 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
« no previous file with comments | « Source/bindings/core/v8/DOMDataStore.h ('k') | Source/bindings/core/v8/V8Binding.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « Source/bindings/core/v8/DOMDataStore.h ('k') | Source/bindings/core/v8/V8Binding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698