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

Unified Diff: Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor.h

Issue 813513004: [bindings] Remove all the usages of Handle<> from binding templates. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
Index: Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor.h
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor.h b/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor.h
index 1c9411f04e50fbbcc4c6905645f2d6496bde4a23..9bd7a8f886e17409cf21be0927b45c5fb534ece0 100644
--- a/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor.h
+++ b/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor.h
@@ -25,21 +25,21 @@ public:
class V8TestInterfaceNamedConstructor {
public:
- static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
- static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
+ static bool hasInstance(v8::Local<v8::Value>, v8::Isolate*);
+ static v8::Local<v8::Object> findInstanceInPrototypeChain(v8::Local<v8::Value>, v8::Isolate*);
static v8::Local<v8::FunctionTemplate> domTemplate(v8::Isolate*);
- static TestInterfaceNamedConstructor* toImpl(v8::Handle<v8::Object> object)
+ static TestInterfaceNamedConstructor* toImpl(v8::Local<v8::Object> object)
{
return blink::toScriptWrappable(object)->toImpl<TestInterfaceNamedConstructor>();
}
- static TestInterfaceNamedConstructor* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
+ static TestInterfaceNamedConstructor* toImplWithTypeCheck(v8::Isolate*, v8::Local<v8::Value>);
static const WrapperTypeInfo wrapperTypeInfo;
static void refObject(ScriptWrappable*);
static void derefObject(ScriptWrappable*);
static void trace(Visitor* visitor, ScriptWrappable* scriptWrappable)
{
}
- static ActiveDOMObject* toActiveDOMObject(v8::Handle<v8::Object>);
+ static ActiveDOMObject* toActiveDOMObject(v8::Local<v8::Object>);
static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0;
static void installConditionallyEnabledProperties(v8::Local<v8::Object>, v8::Isolate*) { }
static void installConditionallyEnabledMethods(v8::Local<v8::Object>, v8::Isolate*) { }

Powered by Google App Engine
This is Rietveld 408576698