| Index: Source/bindings/tests/results/core/V8TestSpecialOperations.h
|
| diff --git a/Source/bindings/tests/results/core/V8TestSpecialOperations.h b/Source/bindings/tests/results/core/V8TestSpecialOperations.h
|
| index 3b5492ced014cea759618d221add98ca0a028f9f..bdb47090f8a1991f394cd097dcf8e14efd30c64d 100644
|
| --- a/Source/bindings/tests/results/core/V8TestSpecialOperations.h
|
| +++ b/Source/bindings/tests/results/core/V8TestSpecialOperations.h
|
| @@ -19,14 +19,14 @@ namespace blink {
|
|
|
| class V8TestSpecialOperations {
|
| 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 TestSpecialOperations* toImpl(v8::Handle<v8::Object> object)
|
| + static TestSpecialOperations* toImpl(v8::Local<v8::Object> object)
|
| {
|
| return blink::toScriptWrappable(object)->toImpl<TestSpecialOperations>();
|
| }
|
| - static TestSpecialOperations* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
|
| + static TestSpecialOperations* toImplWithTypeCheck(v8::Isolate*, v8::Local<v8::Value>);
|
| static const WrapperTypeInfo wrapperTypeInfo;
|
| static void refObject(ScriptWrappable*);
|
| static void derefObject(ScriptWrappable*);
|
|
|