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

Unified Diff: Source/bindings/core/v8/CustomElementBinding.cpp

Issue 1077043002: bindings: v8::Handle -> v8::Local in CostumElementBinding (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed rebase issue 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/CustomElementBinding.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/CustomElementBinding.cpp
diff --git a/Source/bindings/core/v8/CustomElementBinding.cpp b/Source/bindings/core/v8/CustomElementBinding.cpp
index 04526ea0b90197b9211c09b160d8b8cf3e23c788..51037062819019d38d47f7a63386541dc8c2b0e2 100644
--- a/Source/bindings/core/v8/CustomElementBinding.cpp
+++ b/Source/bindings/core/v8/CustomElementBinding.cpp
@@ -33,12 +33,12 @@
namespace blink {
-PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Handle<v8::Object> prototype)
+PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Local<v8::Object> prototype)
{
return adoptPtr(new CustomElementBinding(isolate, prototype));
}
-CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Handle<v8::Object> prototype)
+CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Local<v8::Object> prototype)
: m_prototype(isolate, prototype)
{
ASSERT(!m_prototype.isEmpty());
« no previous file with comments | « Source/bindings/core/v8/CustomElementBinding.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698