Home
last modified time | relevance | path

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

12

/external/webkit/Source/WebCore/inspector/
DInspectorAgent.cpp111 , m_frontend(0) in InspectorAgent()
168 if (m_frontend) { in inspectedPageDestroyed()
169 m_frontend->inspector()->disconnectFromBackend(); in inspectedPageDestroyed()
192 m_frontend->inspector()->frontendReused(); in restoreInspectorStateFromCookie()
223 m_frontend = inspectorFrontend; in setFrontend()
226 m_applicationCacheAgent->setFrontend(m_frontend); in setFrontend()
228 m_pageAgent->setFrontend(m_frontend); in setFrontend()
229 m_domAgent->setFrontend(m_frontend); in setFrontend()
230 m_consoleAgent->setFrontend(m_frontend); in setFrontend()
231 m_timelineAgent->setFrontend(m_frontend); in setFrontend()
[all …]
DInspectorProfilerAgent.cpp76 , m_frontend(0) in InspectorProfilerAgent()
95 if (m_frontend) in addProfile()
96 m_frontend->addProfileHeader(createProfileHeader(*profile)); in addProfile()
102 if (!m_frontend) in addProfileFinishedMessageToConsole()
112 if (!m_frontend) in addStartProfilingMessageToConsole()
161 if (m_frontend) in disable()
162 m_frontend->profilerWasDisabled(); in disable()
172 if (m_frontend) in enable()
173 m_frontend->profilerWasEnabled(); in enable()
199 : m_frontend(frontend), m_uid(uid) { } in OutputStream()
[all …]
DInspectorDOMStorageResource.cpp56 , m_frontend(0) in InspectorDOMStorageResource()
69 ASSERT(!m_frontend); in bind()
70 m_frontend = frontend->domstorage(); in bind()
76 m_frontend->addDOMStorage(jsonObject); in bind()
81 if (!m_frontend) in unbind()
88 m_frontend = 0; in unbind()
93 ASSERT(m_frontend); in startReportingChangesToFrontend()
102 ASSERT(m_frontend); in handleEvent()
111 m_frontend->updateDOMStorage(m_id); in handleEvent()
DInspectorResourceAgent.cpp93 m_frontend = frontend->network(); in setFrontend()
96 InspectorFrontendChannel* client = m_frontend->getInspectorFrontendChannel(); in setFrontend()
98 m_frontend->setInspectorFrontendChannel(m_inspectorFrontendProxy.get()); in setFrontend()
107 m_frontend = m_mockFrontend.get(); in clearFrontend()
109 m_frontend = 0; in clearFrontend()
331m_frontend->requestWillBeSent(static_cast<int>(identifier), pointerAsId(loader->frame()), pointerA… in willSendRequest()
336 m_frontend->resourceMarkedAsCached(static_cast<int>(identifier)); in markResourceAsCached()
359m_frontend->responseReceived(static_cast<int>(identifier), currentTime(), type, resourceResponse); in didReceiveResponse()
368m_frontend->dataReceived(static_cast<int>(identifier), currentTime(), dataLength, encodedDataLengt… in didReceiveContentLength()
376 m_frontend->loadingFinished(static_cast<int>(identifier), finishTime); in didFinishLoading()
[all …]
DInspectorConsoleAgent.cpp65 , m_frontend(0) in InspectorConsoleAgent()
90 m_consoleMessages[i]->addToFrontend(m_frontend, m_injectedScriptManager); in enable()
105 if (m_frontend) in clearConsoleMessages()
106 m_frontend->messagesCleared(); in clearConsoleMessages()
119 m_frontend = frontend->console(); in setFrontend()
124 m_frontend = 0; in clearFrontend()
246 if (m_inspectorState->getBoolean(ConsoleAgentState::consoleMessagesEnabled) && m_frontend) in addConsoleMessage()
247 m_previousMessage->updateRepeatCountInConsole(m_frontend); in addConsoleMessage()
251 if (m_inspectorState->getBoolean(ConsoleAgentState::consoleMessagesEnabled) && m_frontend) in addConsoleMessage()
252 m_previousMessage->addToFrontend(m_frontend, m_injectedScriptManager); in addConsoleMessage()
[all …]
DWorkerInspectorController.cpp101 ASSERT(!m_frontend); in connectFrontend()
103 m_frontend = new InspectorFrontend(channel); in connectFrontend()
133 m_injectedScriptManager->injectedScriptHost()->setFrontend(m_frontend.get()); in connectFrontend()
135 m_debuggerAgent->setFrontend(m_frontend.get()); in connectFrontend()
141 if (!m_frontend) in disconnectFrontend()
152 m_frontend.clear(); in disconnectFrontend()
DInspectorDOMStorageAgent.cpp55 , m_frontend(0) in InspectorDOMStorageAgent()
68 m_frontend = frontend; in setFrontend()
71 it->second->bind(m_frontend); in setFrontend()
79 m_frontend = 0; in clearFrontend()
154 if (m_frontend) in didUseDOMStorage()
155 resource->bind(m_frontend); in didUseDOMStorage()
DInspectorTimelineAgent.cpp110 m_frontend = frontend->timeline(); in setFrontend()
117 m_frontend = 0; in clearFrontend()
130 if (!m_frontend) in start()
134 m_frontend->started(); in start()
143 if (m_frontend) in stop()
144 m_frontend->stopped(); in stop()
295 m_frontend->eventRecorded(record.release()); in willSendResourceRequest()
326 m_frontend->eventRecorded(record.release()); in didFinishLoadingResource()
362 m_frontend->eventRecorded(record.release()); in addRecordToTimeline()
398 , m_frontend(0) in InspectorTimelineAgent()
DInspectorApplicationCacheAgent.cpp48 , m_frontend(0) in InspectorApplicationCacheAgent()
54 m_frontend = frontend->applicationcache(); in setFrontend()
61 m_frontend = 0; in clearFrontend()
67 m_frontend->updateApplicationCacheStatus(status); in updateApplicationCacheStatus()
73 m_frontend->updateNetworkState(isNowOnline); in networkStateChanged()
DInspectorDebuggerAgent.cpp55 , m_frontend(0) in InspectorDebuggerAgent()
69 ASSERT(m_frontend); in enable()
80 m_frontend->debuggerWasEnabled(); in enable()
96 if (m_frontend) in disable()
97 m_frontend->debuggerWasDisabled(); in disable()
115 m_frontend = frontend->debugger(); in setFrontend()
120 m_frontend = 0; in clearFrontend()
378m_frontend->scriptParsed(sourceID, url, lineOffset, columnOffset, data.length(), isContentScript); in didParseSource()
398 m_frontend->breakpointResolved(it->first, location); in didParseSource()
404 m_frontend->scriptFailedToParse(url, data, firstLine, errorLine, errorMessage); in failedToParseSource()
[all …]
DInjectedScriptHost.cpp85 , m_frontend(0) in InjectedScriptHost()
104 m_frontend = 0; in disconnect()
121 if (m_frontend) in inspectImpl()
122 m_frontend->inspector()->inspect(object->asObject(), hints->asObject()); in inspectImpl()
DInspectorPageAgent.cpp65 , m_frontend(0) in InspectorPageAgent()
71 m_frontend = frontend; in setFrontend()
75m_frontend->page()->inspectedURLChanged(m_inspectedPage->mainFrame()->document()->url().string()); in setFrontend()
83 m_frontend = 0; in clearFrontend()
216 m_frontend->page()->inspectedURLChanged(url); in inspectedURLChanged()
231 m_frontend->page()->domContentEventFired(currentTime()); in domContentEventFired()
236 m_frontend->page()->loadEventFired(currentTime()); in loadEventFired()
DInjectedScriptHost.h89 void setFrontend(InspectorFrontend* frontend) { m_frontend = frontend; } in setFrontend()
90 void clearFrontend() { m_frontend = 0; } in clearFrontend()
133 InspectorFrontend* m_frontend; variable
DInspectorDOMAgent.cpp266 , m_frontend(0) in InspectorDOMAgent()
283 ASSERT(!m_frontend); in setFrontend()
284 m_frontend = frontend->dom(); in setFrontend()
294 ASSERT(m_frontend); in clearFrontend()
300 m_frontend = 0; in clearFrontend()
354 m_frontend->documentUpdated(); in setDocument()
462 m_frontend->setChildNodes(nodeId, children.release()); in pushChildNodesToFrontend()
550 m_frontend->setChildNodes(0, children); in pushNodePathToFrontend()
901 if (!m_frontend) in focusNode()
1188 m_frontend->documentUpdated(); in mainFrameDOMContentLoaded()
[all …]
DInspectorAgent.h116 InspectorFrontend* frontend() const { return m_frontend; } in frontend()
156 bool hasFrontend() const { return m_frontend; } in hasFrontend()
187 InspectorFrontend* m_frontend; variable
DWorkerInspectorController.h73 OwnPtr<InspectorFrontend> m_frontend; variable
DInspectorApplicationCacheAgent.h72 InspectorFrontend::ApplicationCache* m_frontend; variable
DInspectorDOMStorageResource.h79 InspectorFrontend::DOMStorage* m_frontend; variable
DInspectorDOMStorageAgent.h80 InspectorFrontend* m_frontend; variable
DInspectorPageAgent.h85 InspectorFrontend* m_frontend; variable
DInspectorConsoleAgent.h93 InspectorFrontend::Console* m_frontend; variable
DInspectorProfilerAgent.h108 InspectorFrontend::Profiler* m_frontend; variable
DInspectorResourceAgent.h134 InspectorFrontend::Network* m_frontend; variable
/external/webkit/Source/WebKit/chromium/src/
DInspectorFrontendClientImpl.cpp52 , m_frontend(frontend) in InspectorFrontendClientImpl()
79 m_frontend->frontendLoaded(); in frontendLoaded()
DInspectorFrontendClientImpl.h76 WebDevToolsFrontendImpl* m_frontend; variable

12