HomeSort by relevance Sort by last modified time
    Searched refs:m_frontend (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorMemoryAgent.cpp 52 , m_frontend(0)
58 ASSERT(!m_frontend);
59 m_frontend = frontend->memory();
64 m_frontend = 0;
InspectorHeapProfilerAgent.cpp 71 , m_frontend(0)
82 m_frontend = frontend->heapprofiler();
87 m_frontend = 0;
100 m_frontend->resetProfiles();
156 if (!m_frontend)
160 m_frontend->lastSeenObjectId(lastSeenObjectId, WTF::currentTimeMS());
165 if (!m_frontend)
170 m_frontend->heapStatsUpdate(statsDiff.release());
221 : m_frontend(frontend) { }
228 if (m_frontend) {
243 InspectorFrontend::HeapProfiler* m_frontend; member in class:WebCore::FINAL
266 InspectorFrontend::HeapProfiler* m_frontend; member in class:WebCore::OutputStream
    [all...]
InspectorInspectorAgent.cpp 58 , m_frontend(0)
94 m_frontend = inspectorFrontend;
100 m_frontend = 0;
113 for (Vector<pair<long, String> >::iterator it = m_pendingEvaluateTestCommands.begin(); m_frontend && it != m_pendingEvaluateTestCommands.end(); ++it)
114 m_frontend->inspector()->evaluateForTestInFrontend(static_cast<int>((*it).first), (*it).second);
139 m_frontend->inspector()->evaluateForTestInFrontend(static_cast<int>(callId), script);
151 if (m_state->getBoolean(InspectorAgentState::inspectorAgentEnabled) && m_frontend) {
152 m_frontend->inspector()->inspect(objectToInspect, hints);
WorkerInspectorController.cpp 121 ASSERT(!m_frontend);
124 m_frontend = adoptPtr(new InspectorFrontend(m_frontendChannel.get()));
127 m_agents.setFrontend(m_frontend.get());
133 if (!m_frontend)
141 m_frontend.clear();
148 ASSERT(!m_frontend);
InspectorMemoryAgent.h 61 InspectorFrontend::Memory* m_frontend; member in class:WebCore::FINAL
InspectorConsoleAgent.cpp 68 , m_frontend(0)
101 expiredMessage.addToFrontend(m_frontend, m_injectedScriptManager, false);
106 m_consoleMessages[i]->addToFrontend(m_frontend, m_injectedScriptManager, false);
124 if (m_frontend && m_enabled)
125 m_frontend->messagesCleared();
139 m_frontend->messagesCleared();
147 m_frontend = frontend->console();
152 m_frontend = 0;
184 bool canGenerateCallStack = !isWorkerAgent() && m_frontend;
268 if (m_frontend && m_state->getBoolean(ConsoleAgentState::monitoringXHR))
    [all...]
PageRuntimeAgent.cpp 86 ASSERT(m_frontend);
90 m_frontend->executionContextsCleared();
100 ASSERT(m_frontend);
159 m_frontend->executionContextDestroyed(it->value);
InspectorCanvasAgent.cpp 66 , m_frontend(0)
78 m_frontend = frontend->canvas();
83 m_frontend = 0;
111 if (m_frontend)
112 m_frontend->traceLogsRemoved(0, 0);
210 ASSERT(m_frontend);
220 m_frontend->contextCreated(frameId);
292 if (m_frontend) {
296 m_frontend->contextCreated(frameId);
317 m_frontend->traceLogsRemoved(0, 0)
    [all...]
InspectorDOMStorageAgent.cpp 73 , m_frontend(0)
83 m_frontend = frontend;
88 m_frontend = 0;
184 if (!m_frontend || !isEnabled())
190 m_frontend->domstorage()->domStorageItemsCleared(id);
192 m_frontend->domstorage()->domStorageItemRemoved(id, key);
194 m_frontend->domstorage()->domStorageItemAdded(id, key, newValue);
196 m_frontend->domstorage()->domStorageItemUpdated(id, key, oldValue, newValue);
InspectorInspectorAgent.h 74 bool hasFrontend() const { return m_frontend; }
87 InspectorFrontend* m_frontend; member in class:WebCore::FINAL
InspectorProfilerAgent.cpp 94 , m_frontend(0)
108 ASSERT(m_frontend && enabled());
112 m_frontend->consoleProfileStarted(id, currentDebugLocation(scriptState), title.isNull() ? 0 : &title);
117 ASSERT(m_frontend && enabled());
143 m_frontend->consoleProfileFinished(id, location, createCPUProfile(*profile), resolvedTitle.isNull() ? 0 : &resolvedTitle);
185 m_frontend = frontend->profiler();
190 m_frontend = 0;