OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InspectorAgent
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorAgent.cpp
32
#include "core/inspector/
InspectorAgent
.h"
55
InspectorAgent
::
InspectorAgent
(Page* page, InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
56
: InspectorBaseAgent<
InspectorAgent
>("Inspector", instrumentingAgents, state)
65
InspectorAgent
::~
InspectorAgent
()
70
void
InspectorAgent
::didClearWindowObjectInWorld(Frame* frame, DOMWrapperWorld* world)
91
void
InspectorAgent
::setFrontend(InspectorFrontend* inspectorFrontend)
96
void
InspectorAgent
::clearFrontend()
105
void
InspectorAgent
::didCommitLoad(Frame* frame, DocumentLoader* loader
[
all
...]
InspectorAgent.h
51
class
InspectorAgent
: public InspectorBaseAgent<
InspectorAgent
>, public InspectorBackendDispatcher::InspectorCommandHandler {
52
WTF_MAKE_NONCOPYABLE(
InspectorAgent
);
54
static PassOwnPtr<
InspectorAgent
> create(Page* page, InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
56
return adoptPtr(new
InspectorAgent
(page, injectedScriptManager, instrumentingAgents, state));
59
virtual ~
InspectorAgent
();
84
InspectorAgent
(Page*, InjectedScriptManager*, InstrumentingAgents*, InspectorCompositeState*);
Completed in 23 milliseconds