| Index: sky/engine/bindings/core/v8/V8ScriptRunner.cpp
|
| diff --git a/sky/engine/bindings/core/v8/V8ScriptRunner.cpp b/sky/engine/bindings/core/v8/V8ScriptRunner.cpp
|
| index 046c0bba4219a6943385160d006f730d1896581c..ad617b48b3a70f34e2e1a00b655cf89901beabcd 100644
|
| --- a/sky/engine/bindings/core/v8/V8ScriptRunner.cpp
|
| +++ b/sky/engine/bindings/core/v8/V8ScriptRunner.cpp
|
| @@ -152,17 +152,6 @@ v8::Local<v8::Value> V8ScriptRunner::callInternalFunction(v8::Handle<v8::Functio
|
| return result;
|
| }
|
|
|
| -v8::Local<v8::Value> V8ScriptRunner::callAsFunction(v8::Isolate* isolate, v8::Handle<v8::Object> object, v8::Handle<v8::Value> receiver, int argc, v8::Handle<v8::Value> args[])
|
| -{
|
| - TRACE_EVENT0("v8", "v8.callFunction");
|
| - TRACE_EVENT_SCOPED_SAMPLING_STATE("v8", "V8Execution");
|
| -
|
| - V8RecursionScope::MicrotaskSuppression recursionScope(isolate);
|
| - v8::Local<v8::Value> result = object->CallAsFunction(receiver, argc, args);
|
| - crashIfV8IsDead();
|
| - return result;
|
| -}
|
| -
|
| v8::Local<v8::Object> V8ScriptRunner::instantiateObject(v8::Isolate* isolate, v8::Handle<v8::ObjectTemplate> objectTemplate)
|
| {
|
| TRACE_EVENT0("v8", "v8.newInstance");
|
|
|