Home | History | Annotate | Download | only in inspector

Lines Matching refs:callId

126 void InspectorBackend::getResourceContent(long callId, unsigned long identifier)
134 frontend->didGetResourceContent(callId, resource->sourceString());
136 frontend->didGetResourceContent(callId, "");
263 void InspectorBackend::getProfileHeaders(long callId)
266 m_inspectorController->getProfileHeaders(callId);
269 void InspectorBackend::getProfile(long callId, unsigned uid)
272 m_inspectorController->getProfile(callId, uid);
282 void InspectorBackend::dispatchOnInjectedScript(long callId, long injectedScriptId, const String& methodName, const String& arguments, bool async)
302 injectedScript.dispatch(callId, methodName, arguments, async, &result, &hadException);
305 frontend->didDispatchOnInjectedScript(callId, result.get(), hadException);
308 void InspectorBackend::getChildNodes(long callId, long nodeId)
311 domAgent->getChildNodes(callId, nodeId);
314 void InspectorBackend::setAttribute(long callId, long elementId, const String& name, const String& value)
317 domAgent->setAttribute(callId, elementId, name, value);
320 void InspectorBackend::removeAttribute(long callId, long elementId, const String& name)
323 domAgent->removeAttribute(callId, elementId, name);
326 void InspectorBackend::setTextNodeValue(long callId, long nodeId, const String& value)
329 domAgent->setTextNodeValue(callId, nodeId, value);
332 void InspectorBackend::getEventListenersForNode(long callId, long nodeId)
335 domAgent->getEventListenersForNode(callId, nodeId);
347 void InspectorBackend::removeNode(long callId, long nodeId)
356 frontend->didRemoveNode(callId, -1);
362 frontend->didRemoveNode(callId, -1);
369 frontend->didRemoveNode(callId, -1);
373 frontend->didRemoveNode(callId, nodeId);
388 void InspectorBackend::getCookies(long callId)
392 m_inspectorController->getCookies(callId);
409 void InspectorBackend::didEvaluateForTestInFrontend(long callId, const String& jsonResult)
412 m_inspectorController->didEvaluateForTestInFrontend(callId, jsonResult);
416 void InspectorBackend::getDatabaseTableNames(long callId, long databaseId)
427 frontend->didGetDatabaseTableNames(callId, result);
433 void InspectorBackend::getDOMStorageEntries(long callId, long storageId)
436 m_inspectorController->getDOMStorageEntries(callId, storageId);
439 void InspectorBackend::setDOMStorageItem(long callId, long storageId, const String& key, const String& value)
442 m_inspectorController->setDOMStorageItem(callId, storageId, key, value);
445 void InspectorBackend::removeDOMStorageItem(long callId, long storageId, const String& key)
448 m_inspectorController->removeDOMStorageItem(callId, storageId, key);