Home | History | Annotate | Download | only in inspector

Lines Matching refs:m_frontend

69     , m_frontend(0)
89 if (!m_frontend)
94 m_frontend->resetProfiles();
99 m_frontend = frontend->heapprofiler();
106 m_frontend = 0;
175 if (!m_frontend)
179 m_frontend->lastSeenObjectId(lastSeenObjectId, WTF::currentTimeMS());
184 if (!m_frontend)
189 m_frontend->heapStatsUpdate(statsDiff.release());
216 : m_frontend(frontend), m_uid(uid) { }
217 void Write(const String& chunk) { m_frontend->addHeapSnapshotChunk(m_uid, chunk); }
218 void Close() { m_frontend->finishHeapSnapshot(m_uid); }
220 InspectorFrontend::HeapProfiler* m_frontend;
231 if (m_frontend) {
232 OutputStream stream(m_frontend, uid);
249 : m_frontend(frontend) { }
256 if (m_frontend)
257 m_frontend->reportHeapSnapshotProgress(workDone, m_totalWork);
262 InspectorFrontend::HeapProfiler* m_frontend;
269 HeapSnapshotProgress progress(reportProgress && *reportProgress ? m_frontend : 0);
273 if (m_frontend)
274 m_frontend->addProfileHeader(createSnapshotHeader(*snapshot));