Home | History | Annotate | Download | only in inspector

Lines Matching refs:InspectorFrontendChannel

35         $domainClassName(InspectorFrontendChannel* inspectorFrontendChannel) : m_inspectorFrontendChannel(inspectorFrontendChannel) { }
36 ${frontendDomainMethodDeclarations} void setInspectorFrontendChannel(InspectorFrontendChannel* inspectorFrontendChannel) { m_inspectorFrontendChannel = inspectorFrontendChannel; }
37 InspectorFrontendChannel* getInspectorFrontendChannel() { return m_inspectorFrontendChannel; }
39 InspectorFrontendChannel* m_inspectorFrontendChannel;
110 class InspectorFrontendChannel;
116 InspectorFrontend(InspectorFrontendChannel*);
142 class InspectorFrontendChannel;
150 static PassRefPtr<InspectorBackendDispatcher> create(InspectorFrontendChannel* inspectorFrontendChannel);
215 #include "core/inspector/InspectorFrontendChannel.h"
230 InspectorBackendDispatcherImpl(InspectorFrontendChannel* inspectorFrontendChannel)
231 : m_inspectorFrontendChannel(inspectorFrontendChannel)
247 InspectorFrontendChannel* m_inspectorFrontendChannel;
266 PassRefPtr<InspectorBackendDispatcher> InspectorBackendDispatcher::create(InspectorFrontendChannel* inspectorFrontendChannel)
268 return adoptRef(new InspectorBackendDispatcherImpl(inspectorFrontendChannel));
518 #include "core/inspector/InspectorFrontendChannel.h"
525 InspectorFrontend::InspectorFrontend(InspectorFrontendChannel* inspectorFrontendChannel)