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

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

Issue 1113523002: Use Local<> instead of Handle<> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 | « no previous file | Source/bindings/core/v8/DOMWrapperWorld.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 825a0a3b7ea3b711306496749281dbcd7c485a41..41d0271f5b5934a105a32bee3a2259d6a4e8e73b 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(v8::Isolate* isolate, KeyType* key)
+ v8::Local<v8::Object> newLocal(v8::Isolate* isolate, KeyType* key)
{
return m_map.Get(key);
}
@@ -68,7 +68,7 @@ public:
return m_map.Contains(key);
}
- void set(KeyType* key, v8::Handle<v8::Object> wrapper, const WrapperTypeInfo* wrapperTypeInfo)
+ void set(KeyType* key, v8::Local<v8::Object> wrapper, const WrapperTypeInfo* wrapperTypeInfo)
{
ASSERT((getInternalField<KeyType, v8DOMWrapperObjectIndex>(wrapper)) == key);
RELEASE_ASSERT(!containsKey(key)); // See crbug.com/368095
« no previous file with comments | « no previous file | Source/bindings/core/v8/DOMWrapperWorld.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698