| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.cpp b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.cpp
|
| index ee474cf5ca8abe007e347e4a407fd57f844aa715..c9b12139c863e1c948ab9812447019ee87c6fc77 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.cpp
|
| @@ -78,8 +78,8 @@
|
| void InjectedScriptHost::inspectImpl(PassRefPtr<JSONValue> object, PassRefPtr<JSONValue> hints)
|
| {
|
| if (m_inspectCallback) {
|
| - OwnPtr<protocol::Runtime::RemoteObject> remoteObject = protocol::Runtime::RemoteObject::runtimeCast(object);
|
| - (*m_inspectCallback)(remoteObject.release(), JSONObject::cast(hints));
|
| + OwnPtr<protocol::Runtime::RemoteObject> remoteObject = protocol::Runtime::RemoteObject::runtimeCast(object->asObject());
|
| + (*m_inspectCallback)(remoteObject.release(), hints->asObject());
|
| }
|
| }
|
|
|
|
|