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

1 2

  /external/webkit/Source/WebCore/inspector/
InspectorInstrumentation.cpp 41 #include "InspectorAgent.h"
69 HashMap<Page*, InspectorAgent*>& InspectorInstrumentation::inspectorAgents()
71 static HashMap<Page*, InspectorAgent*>& agents = *new HashMap<Page*, InspectorAgent*>;
94 void InspectorInstrumentation::didClearWindowObjectInWorldImpl(InspectorAgent* inspectorAgent, Frame* frame, DOMWrapperWorld* world)
96 if (InspectorPageAgent* pageAgent = inspectorAgent->instrumentingAgents()->inspectorPageAgent())
98 inspectorAgent->didClearWindowObjectInWorld(frame, world);
101 void InspectorInstrumentation::inspectedPageDestroyedImpl(InspectorAgent* inspectorAgent)
    [all...]
InspectorInstrumentation.h 50 class InspectorAgent;
69 typedef pair<InspectorAgent*, int> InspectorInstrumentationCookie;
178 static void bindInspectorAgent(Page* page, InspectorAgent* inspectorAgent) { inspectorAgents().set(page, inspectorAgent); }
191 static void didClearWindowObjectInWorldImpl(InspectorAgent*, Frame*, DOMWrapperWorld*);
192 static void inspectedPageDestroyedImpl(InspectorAgent*);
194 static void willInsertDOMNodeImpl(InspectorAgent*, Node* node, Node* parent);
195 static void didInsertDOMNodeImpl(InspectorAgent*, Node*);
196 static void willRemoveDOMNodeImpl(InspectorAgent*, Node*)
    [all...]
InspectorConsoleInstrumentation.h 44 if (InspectorAgent* inspectorAgent = inspectorAgentForPage(page))
45 addMessageToConsoleImpl(inspectorAgent, source, type, level, message, arguments, callStack);
52 if (InspectorAgent* inspectorAgent = inspectorAgentForPage(page))
53 addMessageToConsoleImpl(inspectorAgent, source, type, level, message, lineNumber, sourceID);
60 if (InspectorAgent* inspectorAgent = inspectorAgentForPage(page))
61 consoleCountImpl(inspectorAgent, arguments, stack);
68 if (InspectorAgent* inspectorAgent = inspectorAgentForPage(page)
    [all...]
InspectorAgent.cpp 32 #include "InspectorAgent.h"
108 InspectorAgent::InspectorAgent(Page* page, InspectorClient* client, InjectedScriptManager* injectedScriptManager)
157 InspectorAgent::~InspectorAgent()
166 void InspectorAgent::inspectedPageDestroyed()
188 void InspectorAgent::restoreInspectorStateFromCookie(const String& inspectorStateCookie)
209 void InspectorAgent::didClearWindowObjectInWorld(Frame* frame, DOMWrapperWorld* world)
218 void InspectorAgent::setFrontend(InspectorFrontend* inspectorFrontend)
259 void InspectorAgent::disconnectFrontend(
    [all...]
InjectedScriptHost.h 34 #include "InspectorAgent.h"
46 class InspectorAgent;
64 void init(InspectorAgent* inspectorAgent
77 m_inspectorAgent = inspectorAgent;
122 InspectorAgent* m_inspectorAgent;
InspectorDatabaseInstrumentation.h 44 if (InspectorAgent* inspectorAgent = inspectorAgentForContext(context))
45 didOpenDatabaseImpl(inspectorAgent, database, domain, name, version);
InstrumentingAgents.h 39 class InspectorAgent;
84 InspectorAgent* inspectorAgent() const { return m_inspectorAgent; }
85 void setInspectorAgent(InspectorAgent* agent) { m_inspectorAgent = agent; }
132 InspectorAgent* m_inspectorAgent;
InspectorBrowserDebuggerAgent.h 45 class InspectorAgent;
59 static PassOwnPtr<InspectorBrowserDebuggerAgent> create(InstrumentingAgents*, InspectorState*, InspectorDOMAgent*, InspectorDebuggerAgent*, InspectorAgent*);
83 InspectorBrowserDebuggerAgent(InstrumentingAgents*, InspectorState*, InspectorDOMAgent*, InspectorDebuggerAgent*, InspectorAgent*);
101 InspectorAgent* m_inspectorAgent;
InspectorAgent.h 94 class InspectorAgent {
95 WTF_MAKE_NONCOPYABLE(InspectorAgent);
98 InspectorAgent(Page*, InspectorClient*, InjectedScriptManager*);
99 virtual ~InspectorAgent();
170 // InspectorAgent API
InspectorConsoleAgent.h 41 class InspectorAgent;
58 InspectorConsoleAgent(InstrumentingAgents*, InspectorAgent*, InspectorState*, InjectedScriptManager*, InspectorDOMAgent*);
89 InspectorAgent* m_inspectorAgent;
InspectorController.h 45 class InspectorAgent;
108 OwnPtr<InspectorAgent> m_inspectorAgent;
InspectorBrowserDebuggerAgent.cpp 38 #include "InspectorAgent.h"
72 PassOwnPtr<InspectorBrowserDebuggerAgent> InspectorBrowserDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorState* inspectorState, InspectorDOMAgent* domAgent, InspectorDebuggerAgent* debuggerAgent, InspectorAgent* inspectorAgent)
74 return adoptPtr(new InspectorBrowserDebuggerAgent(instrumentingAgents, inspectorState, domAgent, debuggerAgent, inspectorAgent));
77 InspectorBrowserDebuggerAgent::InspectorBrowserDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorState* inspectorState, InspectorDOMAgent* domAgent, InspectorDebuggerAgent* debuggerAgent, InspectorAgent* inspectorAgent)
82 , m_inspectorAgent(inspectorAgent)
InspectorConsoleAgent.cpp 35 #include "InspectorAgent.h"
59 InspectorConsoleAgent::InspectorConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorAgent* inspectorAgent, InspectorState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent)
61 , m_inspectorAgent(inspectorAgent)
InspectorApplicationCacheAgent.h 39 class InspectorAgent;
InspectorController.cpp 40 #include "InspectorAgent.h"
59 , m_inspectorAgent(new InspectorAgent(page, inspectorClient, m_injectedScriptManager.get()))
InjectedScriptHost.cpp 41 #include "InspectorAgent.h"
InspectorApplicationCacheAgent.cpp 35 #include "InspectorAgent.h"
InspectorFrontendHost.cpp 44 #include "InspectorAgent.h"
CodeGeneratorInspector.pm 64 "forward" => "InspectorAgent",
65 "header" => "InspectorAgent.h",
    [all...]
  /external/webkit/Source/WebCore/
ChangeLog-2011-02-16 387 Web Inspector: move Database and DOMStorage related things from InspectorAgent to the corresponding agents.
392 At the moment we are using InspectorAgent instance for such calls.
394 * inspector/InspectorAgent.cpp:
395 (WebCore::InspectorAgent::InspectorAgent):
396 (WebCore::InspectorAgent::createFrontendLifetimeAgents):
397 (WebCore::InspectorAgent::pushDataCollectedOffline):
398 (WebCore::InspectorAgent::didCommitLoad):
399 * inspector/InspectorAgent.h:
402 (WebCore::InspectorAgent::databaseAgentResources)
    [all...]
ChangeLog     [all...]
WebCore.pro 819 inspector/InspectorAgent.cpp \
    [all...]
CMakeLists.txt 901 inspector/InspectorAgent.cpp
    [all...]
  /external/webkit/Source/WebKit/cf/
ChangeLog 48 Web Inspector: remove "attached" state related methods from InspectorAgent
  /external/webkit/Source/WebKit/gtk/
NEWS 162 Bug 53169 - Web Inspector: move InspectorController's methods from InspectorAgent to InspectorController (Ilya Tikhonovsky)
    [all...]

Completed in 468 milliseconds

1 2