| 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 e7b111aaacfdc8813cf1facdba3e9ad121f0b7e6..af523effb156601da9cd8b03f6e376f4e519d35f 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| @@ -469,11 +469,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;
|
| @@ -555,4 +550,10 @@ void V8RuntimeAgentImpl::reportExecutionContextDestroyed(InspectedContext* conte
|
| }
|
| }
|
|
|
| +void V8RuntimeAgentImpl::inspect(PassOwnPtr<protocol::Runtime::RemoteObject> objectToInspect, PassOwnPtr<protocol::DictionaryValue> hints)
|
| +{
|
| + if (m_enabled)
|
| + m_frontend->inspectRequested(objectToInspect, hints);
|
| +}
|
| +
|
| } // namespace blink
|
|
|