| Index: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| index 7dcea93133dff744152e88cf19320d218f37b982..ef00cf2e43cd0c917576272498fd1c8733dde6e0 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| @@ -463,11 +463,6 @@ void V8RuntimeAgentImpl::setClearConsoleCallback(PassOwnPtr<V8RuntimeAgent::Clea
|
| m_session->setClearConsoleCallback(callback);
|
| }
|
|
|
| -void V8RuntimeAgentImpl::setInspectObjectCallback(PassOwnPtr<V8RuntimeAgent::InspectCallback> callback)
|
| -{
|
| - m_session->setInspectObjectCallback(callback);
|
| -}
|
| -
|
| PassOwnPtr<RemoteObject> V8RuntimeAgentImpl::wrapObject(v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String16& groupName, bool generatePreview)
|
| {
|
| ErrorString errorString;
|
| @@ -551,4 +546,10 @@ void V8RuntimeAgentImpl::reportExecutionContextDestroyed(InspectedContext* conte
|
| }
|
| }
|
|
|
| +void V8RuntimeAgentImpl::inspect(PassOwnPtr<protocol::Runtime::RemoteObject> objectToInspect, PassOwnPtr<protocol::DictionaryValue> hints)
|
| +{
|
| + if (m_enabled)
|
| + m_frontend->inspect(objectToInspect, hints);
|
| +}
|
| +
|
| } // namespace blink
|
|
|