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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorController.h 47 class InspectorClient;
72 static PassOwnPtr<InspectorController> create(Page*, InspectorClient*);
109 InspectorClient* inspectorClient() const { return m_inspectorClient; }
120 InspectorController(Page*, InspectorClient*);
137 InspectorClient* m_inspectorClient;
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.cpp 45 #include "core/inspector/InspectorClient.h"
75 InspectorController::InspectorController(Page* page, InspectorClient* inspectorClient)
78 , m_state(adoptPtr(new InspectorCompositeState(inspectorClient)))
79 , m_overlay(InspectorOverlay::create(page, inspectorClient))
81 , m_inspectorClient(inspectorClient)
86 OwnPtr<InspectorPageAgent> pageAgentPtr(InspectorPageAgent::create(m_instrumentingAgents.get(), page, m_state.get(), m_injectedScriptManager.get(), inspectorClient, m_overlay.get()));
90 OwnPtr<InspectorDOMAgent> domAgentPtr(InspectorDOMAgent::create(m_instrumentingAgents.get(), pageAgent, m_state.get(), m_injectedScriptManager.get(), m_overlay.get(), inspectorClient));
109 InspectorTimelineAgent::PageInspector, inspectorClient));
114 m_agents.append(InspectorResourceAgent::create(m_instrumentingAgents.get(), pageAgent, inspectorClient, m_state.get(), m_overlay.get()))
    [all...]
InspectorClient.cpp 32 #include "core/inspector/InspectorClient.h"
41 bool InspectorClient::doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message)
InspectorClient.h 41 class InspectorClient : public InspectorStateClient {
73 virtual ~InspectorClient() { }
InspectorOverlay.h 47 class InspectorClient;
118 static PassOwnPtr<InspectorOverlay> create(Page* page, InspectorClient* client)
153 InspectorOverlay(Page*, InspectorClient*);
171 InspectorClient* m_client;
InspectorResourceAgent.h 54 class InspectorClient;
78 static PassOwnPtr<InspectorResourceAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorClient* client, InspectorCompositeState* state, InspectorOverlay* overlay)
149 InspectorResourceAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorClient*, InspectorCompositeState*, InspectorOverlay*);
154 InspectorClient* m_client;
InspectorState.h 88 InspectorCompositeState(InspectorStateClient* inspectorClient)
89 : m_client(inspectorClient)
InspectorPageAgent.h 51 class InspectorClient;
77 static PassOwnPtr<InspectorPageAgent> create(InstrumentingAgents*, Page*, InspectorCompositeState*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
176 InspectorPageAgent(InstrumentingAgents*, Page*, InspectorCompositeState*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
188 InspectorClient* m_client;
InspectorTimelineAgent.h 56 class InspectorClient;
112 static PassOwnPtr<InspectorTimelineAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorMemoryAgent* memoryAgent, InspectorDOMAgent* domAgent, InspectorCompositeState* state, InspectorType type, InspectorClient* client)
232 InspectorTimelineAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorMemoryAgent*, InspectorDOMAgent*, InspectorCompositeState*, InspectorType, InspectorClient*);
288 InspectorClient* m_client;
TimelineTraceEventProcessor.h 45 class InspectorClient;
92 TimelineTraceEventProcessor(WeakPtr<InspectorTimelineAgent>, InspectorClient*);
248 InspectorClient* m_inspectorClient;
InspectorDOMAgent.h 55 class InspectorClient;
99 static PassOwnPtr<InspectorDOMAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay, InspectorClient* client)
209 InspectorDOMAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorCompositeState*, InjectedScriptManager*, InspectorOverlay*, InspectorClient*);
246 InspectorClient* m_client;
TimelineTraceEventProcessor.cpp 34 #include "core/inspector/InspectorClient.h"
55 void addProcessor(TimelineTraceEventProcessor* processor, InspectorClient* client)
64 void removeProcessor(TimelineTraceEventProcessor* processor, InspectorClient* client)
150 TimelineTraceEventProcessor::TimelineTraceEventProcessor(WeakPtr<InspectorTimelineAgent> timelineAgent, InspectorClient *client)
InspectorInputAgent.cpp 34 #include "core/inspector/InspectorClient.h"
94 InspectorInputAgent::InspectorInputAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client)
InspectorOverlay.cpp 38 #include "core/inspector/InspectorClient.h"
226 InspectorOverlay::InspectorOverlay(Page* page, InspectorClient* client)
InspectorResourceAgent.cpp 40 #include "core/inspector/InspectorClient.h"
752 InspectorResourceAgent::InspectorResourceAgent(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorClient* client, InspectorCompositeState* state, InspectorOverlay* overlay)
InspectorPageAgent.cpp 47 #include "core/inspector/InspectorClient.h"
241 PassOwnPtr<InspectorPageAgent> InspectorPageAgent::create(InstrumentingAgents* instrumentingAgents, Page* page, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay)
315 InspectorPageAgent::InspectorPageAgent(InstrumentingAgents* instrumentingAgents, Page* page, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorClient* client, InspectorOverlay* overlay)
    [all...]
InspectorTimelineAgent.cpp 719 InspectorTimelineAgent::InspectorTimelineAgent(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorMemoryAgent* memoryAgent, InspectorDOMAgent* domAgent, InspectorCompositeState* state, InspectorType type, InspectorClient* client)
  /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;
70 public WebCore::InspectorClient,
100 // InspectorClient implementation.
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.cpp 55 static InspectorClient* dummyInspectorClient = adoptPtr(new EmptyInspectorClient).leakPtr();
56 pageClients.inspectorClient = dummyInspectorClient;
EmptyClients.h 34 #include "core/inspector/InspectorClient.h"
339 class EmptyInspectorClient : public InspectorClient {
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.h 58 class InspectorClient;
100 InspectorClient* inspectorClient;
Page.cpp 101 , m_inspectorController(InspectorController::create(this, pageClients.inspectorClient))
737 , inspectorClient(0)
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 78 #include "core/inspector/InspectorClient.h"
149 return InspectorClient::doDispatchMessageOnFrontendPage(m_frontendPage, message);
    [all...]

Completed in 281 milliseconds

1 2