Searched refs:m_frontend (Results 1 – 12 of 12) sorted by relevance
/external/webkit/WebCore/inspector/ |
D | InspectorTimelineAgent.cpp | 48 : 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 …]
|
D | InspectorController.cpp | 247 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 …]
|
D | InspectorDOMAgent.cpp | 65 , 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 …]
|
D | InspectorDOMStorageResource.cpp | 57 , 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()
|
D | InspectorFrontendHost.cpp | 172 m_inspectorController->m_frontend->contextMenuItemSelected(itemNumber); in contextMenuItemSelected() 180 m_inspectorController->m_frontend->contextMenuCleared(); in contextMenuCleared()
|
D | InspectorDOMStorageResource.h | 79 InspectorFrontend* m_frontend; variable
|
D | InspectorTimelineAgent.h | 129 InspectorFrontend* m_frontend; variable
|
D | InjectedScriptHost.cpp | 203 return m_inspectorController->m_frontend.get(); in inspectorFrontend()
|
D | InspectorDOMAgent.h | 141 InspectorFrontend* m_frontend; variable
|
D | InspectorBackend.cpp | 463 return m_inspectorController->m_frontend.get(); in inspectorFrontend()
|
D | InspectorController.h | 315 OwnPtr<InspectorFrontend> m_frontend; variable
|
/external/webkit/WebCore/ |
D | ChangeLog-2010-01-29 | 64831 Replace windowVisible checks with m_frontend checks to as inspector
|