| Index: Source/core/inspector/InjectedScriptHost.cpp
|
| diff --git a/Source/core/inspector/InjectedScriptHost.cpp b/Source/core/inspector/InjectedScriptHost.cpp
|
| index 37092364360f494a9c5c7689dffaa3d84392f74e..023f23a433881c1cab90d3781ff54dee0fa6bf76 100644
|
| --- a/Source/core/inspector/InjectedScriptHost.cpp
|
| +++ b/Source/core/inspector/InjectedScriptHost.cpp
|
| @@ -113,6 +113,11 @@ InjectedScriptHost::InspectableObject* InjectedScriptHost::inspectedObject(unsig
|
| return m_inspectedObjects[num].get();
|
| }
|
|
|
| +unsigned InjectedScriptHost::numInspectedObjects()
|
| +{
|
| + return m_inspectedObjects.size();
|
| +}
|
| +
|
| void InjectedScriptHost::debugFunction(const String& scriptId, int lineNumber, int columnNumber)
|
| {
|
| if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
|
|
|