HomeSort by relevance Sort by last modified time
    Searched defs:wrappedResult (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.cpp 162 v8::Handle<v8::Object> wrappedResult = v8::Object::New(m_isolate);
164 wrappedResult->Set(v8::String::NewFromUtf8(m_isolate, "result"), tryCatch.Exception());
165 wrappedResult->Set(v8::String::NewFromUtf8(m_isolate, "exceptionDetails"), createExceptionDetails(tryCatch.Message(), m_isolate));
167 wrappedResult->Set(v8::String::NewFromUtf8(m_isolate, "result"), result);
168 wrappedResult->Set(v8::String::NewFromUtf8(m_isolate, "exceptionDetails"), v8::Undefined(m_isolate));
170 return wrappedResult;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8InjectedScriptHostCustom.cpp 366 v8::Local<v8::Object> wrappedResult = v8::Object::New(isolate);
368 wrappedResult->Set(v8::String::NewFromUtf8(isolate, "result"), tryCatch.Exception());
369 wrappedResult->Set(v8::String::NewFromUtf8(isolate, "exceptionDetails"), JavaScriptCallFrame::createExceptionDetails(tryCatch.Message(), isolate));
371 wrappedResult->Set(v8::String::NewFromUtf8(isolate, "result"), result);
372 wrappedResult->Set(v8::String::NewFromUtf8(isolate, "exceptionDetails"), v8::Undefined(isolate));
374 v8SetReturnValue(info, wrappedResult);

Completed in 734 milliseconds