HomeSort by relevance Sort by last modified time
    Searched full:inspectorclient (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.h 40 class InspectorClient;
48 static PassOwnPtr<InspectorInputAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client)
61 InspectorInputAgent(InstrumentingAgents*, InspectorCompositeState*, Page*, InspectorClient*);
64 InspectorClient* m_client;
InspectorController.h 47 class InspectorClient;
74 static PassOwnPtr<InspectorController> create(Page*, InspectorClient*);
123 InspectorController(Page*, InspectorClient*);
140 InspectorClient* m_inspectorClient;
InspectorClient.cpp 32 #include "core/inspector/InspectorClient.h"
41 bool InspectorClient::doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message)
InspectorController.cpp 44 #include "core/inspector/InspectorClient.h"
74 InspectorController::InspectorController(Page* page, InspectorClient* inspectorClient)
77 , m_state(adoptPtr(new InspectorCompositeState(inspectorClient)))
78 , m_overlay(InspectorOverlay::create(page, inspectorClient))
80 , m_inspectorClient(inspectorClient)
85 OwnPtr<InspectorPageAgent> pageAgentPtr(InspectorPageAgent::create(m_instrumentingAgents.get(), page, m_state.get(), m_injectedScriptManager.get(), inspectorClient, m_overlay.get()));
89 OwnPtr<InspectorDOMAgent> domAgentPtr(InspectorDOMAgent::create(m_instrumentingAgents.get(), pageAgent, m_state.get(), m_injectedScriptManager.get(), m_overlay.get(), inspectorClient));
93 OwnPtr<InspectorResourceAgent> resourceAgentPtr(InspectorResourceAgent::create(m_instrumentingAgents.get(), pageAgent, inspectorClient, m_state.get()));
112 InspectorTimelineAgent::PageInspector, inspectorClient));
    [all...]
InspectorClient.h 42 class InspectorClient : public InspectorStateClient {
77 virtual ~InspectorClient() { }
InspectorOverlay.h 47 class InspectorClient;
110 static PassOwnPtr<InspectorOverlay> create(Page* page, InspectorClient* client)
149 InspectorOverlay(Page*, InspectorClient*);
165 InspectorClient* m_client;
InspectorResourceAgent.h 54 class InspectorClient;
78 static PassOwnPtr<InspectorResourceAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorClient* client, InspectorCompositeState* state)
154 InspectorResourceAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorClient*, InspectorCompositeState*);
159 InspectorClient* m_client;
TraceEventDispatcher.h 43 class InspectorClient;
142 void addListener(const char* name, char phase, ListenerClass* instance, typename TraceEventTarget<ListenerClass>::TraceEventHandler handler, InspectorClient* client)
147 void removeAllListeners(TraceEventTargetBase*, InspectorClient*);
176 void innerAddListener(const char* name, char phase, TraceEventTargetBase*, TraceEventHandlerMethod, InspectorClient*);
InspectorState.h 89 InspectorCompositeState(InspectorStateClient* inspectorClient)
90 : m_client(inspectorClient)
InspectorPageAgent.h 51 class InspectorClient;
78 static PassOwnPtr<InspectorPageAgent> create(InstrumentingAgents*, Page*, InspectorCompositeState*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
182 InspectorPageAgent(InstrumentingAgents*, Page*, InspectorCompositeState*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
194 InspectorClient* m_client;
InspectorTimelineAgent.h 63 class InspectorClient;
136 static PassOwnPtr<InspectorTimelineAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorMemoryAgent* memoryAgent, InspectorDOMAgent* domAgent, InspectorOverlay* overlay, InspectorCompositeState* state, InspectorType type, InspectorClient* client)
254 InspectorTimelineAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorMemoryAgent*, InspectorDOMAgent*, InspectorOverlay*, InspectorCompositeState*, InspectorType, InspectorClient*);
310 InspectorClient* m_client;
TraceEventDispatcher.cpp 34 #include "core/inspector/InspectorClient.h"
101 void TraceEventDispatcher::innerAddListener(const char* name, char phase, TraceEventTargetBase* instance, TraceEventHandlerMethod method, InspectorClient* client)
113 void TraceEventDispatcher::removeAllListeners(TraceEventTargetBase* instance, InspectorClient* client)
InspectorDOMAgent.h 55 class InspectorClient;
99 static PassOwnPtr<InspectorDOMAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay, InspectorClient* client)
210 InspectorDOMAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorCompositeState*, InjectedScriptManager*, InspectorOverlay*, InspectorClient*);
252 InspectorClient* m_client;
InspectorInputAgent.cpp 34 #include "core/inspector/InspectorClient.h"
92 InspectorInputAgent::InspectorInputAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client)
InspectorOverlay.cpp 39 #include "core/inspector/InspectorClient.h"
247 InspectorOverlay::InspectorOverlay(Page* page, InspectorClient* client)
InspectorResourceAgent.cpp 46 #include "core/inspector/InspectorClient.h"
783 InspectorResourceAgent::InspectorResourceAgent(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorClient* client, InspectorCompositeState* state)
InspectorPageAgent.cpp 56 #include "core/inspector/InspectorClient.h"
245 PassOwnPtr<InspectorPageAgent> InspectorPageAgent::create(InstrumentingAgents* instrumentingAgents, Page* page, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay)
319 InspectorPageAgent::InspectorPageAgent(InstrumentingAgents* instrumentingAgents, Page* page, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay)
    [all...]
InspectorTimelineAgent.cpp 39 #include "core/inspector/InspectorClient.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
InspectorClientImpl.h 34 #include "core/inspector/InspectorClient.h"
45 class InspectorClientImpl : public WebCore::InspectorClient,
51 // InspectorClient methods:
WebDevToolsAgentImpl.h 34 #include "core/inspector/InspectorClient.h"
49 class InspectorClient;
69 public WebCore::InspectorClient,
100 // InspectorClient implementation.
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.cpp 57 static InspectorClient* dummyInspectorClient = adoptPtr(new EmptyInspectorClient).leakPtr();
58 pageClients.inspectorClient = dummyInspectorClient;
EmptyClients.h 33 #include "core/inspector/InspectorClient.h"
322 class EmptyInspectorClient : public InspectorClient {
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.h 58 class InspectorClient;
103 InspectorClient* inspectorClient;
Page.cpp 109 , m_inspectorController(InspectorController::create(this, pageClients.inspectorClient))
550 , inspectorClient(0)
  /external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.cpp 52 m_pageClients.inspectorClient = &m_inspectorClient;

Completed in 836 milliseconds

1 2