Home
last modified time | relevance | path

Searched refs:m_frontend (Results 1 – 12 of 12) sorted by relevance

/external/webkit/WebCore/inspector/
DInspectorTimelineAgent.cpp48 : m_frontend(frontend) in InspectorTimelineAgent()
50 ASSERT(m_frontend); in InspectorTimelineAgent()
59 pushCurrentRecord(TimelineRecordFactory::createEventDispatchData(m_frontend, event), in willDispatchEvent()
70 pushCurrentRecord(m_frontend->newScriptObject(), LayoutTimelineRecordType); in willLayout()
80 pushCurrentRecord(m_frontend->newScriptObject(), RecalculateStylesTimelineRecordType); in willRecalculateStyle()
90 …pushCurrentRecord(TimelineRecordFactory::createPaintData(m_frontend, rect), PaintTimelineRecordTyp… in willPaint()
100 …pushCurrentRecord(TimelineRecordFactory::createParseHTMLData(m_frontend, length, startLine), Parse… in willWriteHTML()
114 …ScriptObject record = TimelineRecordFactory::createGenericRecord(m_frontend, currentTimeInMillisec… in didInstallTimer()
115 …record.set("data", TimelineRecordFactory::createTimerInstallData(m_frontend, timerId, timeout, sin… in didInstallTimer()
121 …ScriptObject record = TimelineRecordFactory::createGenericRecord(m_frontend, currentTimeInMillisec… in didRemoveTimer()
[all …]
DInspectorController.cpp247 if (!m_frontend) { in inspect()
260 ASSERT(m_frontend); in focusNode()
264 m_frontend->updateFocusedNode(id); in focusNode()
292 if (visible == m_windowVisible || !m_frontend) in setWindowVisible()
356 m_previousMessage->updateRepeatCountInConsole(m_frontend.get()); in addConsoleMessage()
361 m_previousMessage->addToConsole(m_frontend.get()); in addConsoleMessage()
382 if (m_frontend) in clearConsoleMessages()
383 m_frontend->clearConsoleMessages(); in clearConsoleMessages()
442 if (!enabled() || !m_frontend) in setAttachedWindow()
445 m_frontend->setAttachedWindow(attached); in setAttachedWindow()
[all …]
DInspectorDOMAgent.cpp65 , m_frontend(frontend) in InspectorDOMAgent()
98 m_frontend->setDocument(ScriptObject()); in setDocument()
143 m_frontend->childNodeCountUpdated(frameOwnerId, innerChildNodeCount(node)); in handleEvent()
147 m_frontend->childNodeRemoved(parentId, frameOwnerId); in handleEvent()
151 m_frontend->childNodeInserted(parentId, prevId, value); in handleEvent()
200 m_frontend->setDocument(buildObjectForNode(document, 2, &m_documentNodeToIdMap)); in pushDocumentToFrontend()
215 m_frontend->setChildNodes(nodeId, children); in pushChildNodesToFrontend()
269 m_frontend->didGetChildNodes(callId); in getChildNodes()
294 m_frontend->setDetachedRoot(buildObjectForNode(node, 0, danglingMap)); in pushNodePathToFrontend()
321 m_frontend->didApplyDomChange(callId, ec == 0); in setAttribute()
[all …]
DInspectorDOMStorageResource.cpp57 , m_frontend(0) in InspectorDOMStorageResource()
70 ASSERT(!m_frontend); in bind()
71 m_frontend = frontend; in bind()
82 if (!m_frontend) in unbind()
89 m_frontend = 0; in unbind()
94 ASSERT(m_frontend); in startReportingChangesToFrontend()
103 ASSERT(m_frontend); in handleEvent()
109 m_frontend->updateDOMStorage(m_id); in handleEvent()
DInspectorFrontendHost.cpp172 m_inspectorController->m_frontend->contextMenuItemSelected(itemNumber); in contextMenuItemSelected()
180 m_inspectorController->m_frontend->contextMenuCleared(); in contextMenuCleared()
DInspectorDOMStorageResource.h79 InspectorFrontend* m_frontend; variable
DInspectorTimelineAgent.h129 InspectorFrontend* m_frontend; variable
DInjectedScriptHost.cpp203 return m_inspectorController->m_frontend.get(); in inspectorFrontend()
DInspectorDOMAgent.h141 InspectorFrontend* m_frontend; variable
DInspectorBackend.cpp463 return m_inspectorController->m_frontend.get(); in inspectorFrontend()
DInspectorController.h315 OwnPtr<InspectorFrontend> m_frontend; variable
/external/webkit/WebCore/
DChangeLog-2010-01-2964831 Replace windowVisible checks with m_frontend checks to as inspector