| Index: third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp
|
| deleted file mode 100644
|
| index 02dff5c03d699822e11bbb39a2c745a596c5edf3..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp
|
| +++ /dev/null
|
| @@ -1,186 +0,0 @@
|
| -// Copyright 2015 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "platform/v8_inspector/V8JavaScriptCallFrame.h"
|
| -
|
| -#include "platform/v8_inspector/InspectorWrapper.h"
|
| -#include "platform/v8_inspector/JavaScriptCallFrame.h"
|
| -#include "platform/v8_inspector/V8StringUtil.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| -#include <algorithm>
|
| -
|
| -namespace blink {
|
| -
|
| -namespace {
|
| -
|
| -void callerAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - OwnPtr<JavaScriptCallFrame> caller = impl->caller();
|
| - if (!caller)
|
| - return;
|
| - v8::Isolate* isolate = info.GetIsolate();
|
| - v8::Local<v8::FunctionTemplate> wrapperTemplate = impl->wrapperTemplate(isolate);
|
| - if (wrapperTemplate.IsEmpty())
|
| - return;
|
| - info.GetReturnValue().Set(V8JavaScriptCallFrame::wrap(wrapperTemplate, isolate->GetCurrentContext(), caller.release()));
|
| -}
|
| -
|
| -void sourceIDAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->sourceID());
|
| -}
|
| -
|
| -void lineAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->line());
|
| -}
|
| -
|
| -void columnAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->column());
|
| -}
|
| -
|
| -void scopeChainAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->scopeChain());
|
| -}
|
| -
|
| -void thisObjectAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->thisObject());
|
| -}
|
| -
|
| -void stepInPositionsAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(toV8String(info.GetIsolate(), impl->stepInPositions()));
|
| -}
|
| -
|
| -void functionNameAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(toV8String(info.GetIsolate(), impl->functionName()));
|
| -}
|
| -
|
| -void functionLineAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->functionLine());
|
| -}
|
| -
|
| -void functionColumnAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->functionColumn());
|
| -}
|
| -
|
| -void isAtReturnAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->isAtReturn());
|
| -}
|
| -
|
| -void returnValueAttributeGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - info.GetReturnValue().Set(impl->returnValue());
|
| -}
|
| -
|
| -void scopeTypeMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - v8::Maybe<int32_t> maybeScopeIndex = info[0]->Int32Value(info.GetIsolate()->GetCurrentContext());
|
| - if (maybeScopeIndex.IsNothing())
|
| - return;
|
| - int scopeIndex = maybeScopeIndex.FromJust();
|
| - info.GetReturnValue().Set(impl->scopeType(scopeIndex));
|
| -}
|
| -
|
| -void scopeNameMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - v8::Maybe<int32_t> maybeScopeIndex = info[0]->Int32Value(info.GetIsolate()->GetCurrentContext());
|
| - if (maybeScopeIndex.IsNothing())
|
| - return;
|
| - int scopeIndex = maybeScopeIndex.FromJust();
|
| - info.GetReturnValue().Set(impl->scopeName(scopeIndex));
|
| -}
|
| -
|
| -void scopeStartLocationMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - v8::Maybe<int32_t> maybeScopeIndex = info[0]->Int32Value(info.GetIsolate()->GetCurrentContext());
|
| - if (maybeScopeIndex.IsNothing())
|
| - return;
|
| - int scopeIndex = maybeScopeIndex.FromJust();
|
| - info.GetReturnValue().Set(impl->scopeStartLocation(scopeIndex));
|
| -}
|
| -
|
| -void scopeEndLocationMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| -{
|
| - JavaScriptCallFrame* impl = V8JavaScriptCallFrame::unwrap(info.GetIsolate()->GetCurrentContext(), info.Holder());
|
| - v8::Maybe<int32_t> maybeScopeIndex = info[0]->Int32Value(info.GetIsolate()->GetCurrentContext());
|
| - if (maybeScopeIndex.IsNothing())
|
| - return;
|
| - int scopeIndex = maybeScopeIndex.FromJust();
|
| - info.GetReturnValue().Set(impl->scopeEndLocation(scopeIndex));
|
| -}
|
| -
|
| -char hiddenPropertyName[] = "v8inspector::JavaScriptCallFrame";
|
| -char className[] = "V8JavaScriptCallFrame";
|
| -using JavaScriptCallFrameWrapper = InspectorWrapper<JavaScriptCallFrame, hiddenPropertyName, className>;
|
| -
|
| -const JavaScriptCallFrameWrapper::V8AttributeConfiguration V8JavaScriptCallFrameAttributes[] = {
|
| - {"scopeChain", scopeChainAttributeGetterCallback},
|
| - {"thisObject", thisObjectAttributeGetterCallback},
|
| - {"returnValue", returnValueAttributeGetterCallback},
|
| -
|
| - {"caller", callerAttributeGetterCallback},
|
| - {"sourceID", sourceIDAttributeGetterCallback},
|
| - {"line", lineAttributeGetterCallback},
|
| - {"column", columnAttributeGetterCallback},
|
| - {"stepInPositions", stepInPositionsAttributeGetterCallback},
|
| - {"functionName", functionNameAttributeGetterCallback},
|
| - {"functionLine", functionLineAttributeGetterCallback},
|
| - {"functionColumn", functionColumnAttributeGetterCallback},
|
| - {"isAtReturn", isAtReturnAttributeGetterCallback},
|
| -};
|
| -
|
| -const JavaScriptCallFrameWrapper::V8MethodConfiguration V8JavaScriptCallFrameMethods[] = {
|
| - {"scopeType", scopeTypeMethodCallback},
|
| - {"scopeName", scopeNameMethodCallback},
|
| - {"scopeStartLocation", scopeStartLocationMethodCallback},
|
| - {"scopeEndLocation", scopeEndLocationMethodCallback},
|
| -};
|
| -
|
| -} // namespace
|
| -
|
| -v8::Local<v8::FunctionTemplate> V8JavaScriptCallFrame::createWrapperTemplate(v8::Isolate* isolate)
|
| -{
|
| - protocol::Vector<InspectorWrapperBase::V8MethodConfiguration> methods(WTF_ARRAY_LENGTH(V8JavaScriptCallFrameMethods));
|
| - std::copy(V8JavaScriptCallFrameMethods, V8JavaScriptCallFrameMethods + WTF_ARRAY_LENGTH(V8JavaScriptCallFrameMethods), methods.begin());
|
| - protocol::Vector<InspectorWrapperBase::V8AttributeConfiguration> attributes(WTF_ARRAY_LENGTH(V8JavaScriptCallFrameAttributes));
|
| - std::copy(V8JavaScriptCallFrameAttributes, V8JavaScriptCallFrameAttributes + WTF_ARRAY_LENGTH(V8JavaScriptCallFrameAttributes), attributes.begin());
|
| - return JavaScriptCallFrameWrapper::createWrapperTemplate(isolate, methods, attributes);
|
| -}
|
| -
|
| -v8::Local<v8::Object> V8JavaScriptCallFrame::wrap(v8::Local<v8::FunctionTemplate> constructorTemplate, v8::Local<v8::Context> context, PassOwnPtr<JavaScriptCallFrame> frame)
|
| -{
|
| - // Store template for .caller callback
|
| - frame->setWrapperTemplate(constructorTemplate, context->GetIsolate());
|
| - return JavaScriptCallFrameWrapper::wrap(constructorTemplate, context, frame);
|
| -}
|
| -
|
| -JavaScriptCallFrame* V8JavaScriptCallFrame::unwrap(v8::Local<v8::Context> context, v8::Local<v8::Object> object)
|
| -{
|
| - return JavaScriptCallFrameWrapper::unwrap(context, object);
|
| -}
|
| -
|
| -} // namespace blink
|
|
|