| Index: third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp b/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5ff43de6c81b466b54ec1c6af536dba172b736e1
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp
|
| @@ -0,0 +1,74 @@
|
| +// Copyright 2016 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/public/SimpleInspector.h"
|
| +
|
| +#include "platform/inspector_protocol/DispatcherBase.h"
|
| +#include "platform/v8_inspector/V8StringUtil.h"
|
| +#include "platform/v8_inspector/public/V8Inspector.h"
|
| +#include "platform/v8_inspector/public/V8InspectorClient.h"
|
| +
|
| +namespace blink {
|
| +
|
| +SimpleInspector::SimpleInspector(v8::Isolate* isolate, v8::Local<v8::Context> context)
|
| + : m_context(context)
|
| +{
|
| + m_inspector = V8Inspector::create(isolate, this);
|
| + m_inspector->contextCreated(V8ContextInfo(context, 1, true, "",
|
| + "NodeJS Main Context", "", false));
|
| +}
|
| +
|
| +SimpleInspector::~SimpleInspector()
|
| +{
|
| + disconnectFrontend();
|
| +}
|
| +
|
| +String16 SimpleInspector::valueSubtype(v8::Local<v8::Value> value)
|
| +{
|
| + return String16();
|
| +}
|
| +
|
| +bool SimpleInspector::formatAccessorsAsProperties(v8::Local<v8::Value> value)
|
| +{
|
| + return false;
|
| +}
|
| +
|
| +void SimpleInspector::connectFrontend(protocol::FrontendChannel* channel)
|
| +{
|
| + m_session = m_inspector->connect(1, channel, this, &m_state);
|
| +}
|
| +
|
| +void SimpleInspector::disconnectFrontend()
|
| +{
|
| + m_session.reset();
|
| +}
|
| +
|
| +void SimpleInspector::dispatchMessageFromFrontend(const String16& message)
|
| +{
|
| + if (m_session)
|
| + m_session->dispatchProtocolMessage(message);
|
| +}
|
| +
|
| +v8::Local<v8::Context> SimpleInspector::ensureDefaultContextInGroup(int)
|
| +{
|
| + return m_context;
|
| +}
|
| +
|
| +bool SimpleInspector::isExecutionAllowed()
|
| +{
|
| + return true;
|
| +}
|
| +
|
| +bool SimpleInspector::canExecuteScripts()
|
| +{
|
| + return true;
|
| +}
|
| +
|
| +void SimpleInspector::notifyContextDestroyed()
|
| +{
|
| + m_inspector->contextDestroyed(m_context);
|
| +}
|
| +
|
| +} // namespace blink
|
|
|