HomeSort by relevance Sort by last modified time
    Searched refs:InspectorPageAgent (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PageDebuggerAgent.h 41 class InspectorPageAgent;
51 static PassOwnPtr<PageDebuggerAgent> create(InstrumentingAgents*, InspectorCompositeState*, PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*);
75 PageDebuggerAgent(InstrumentingAgents*, InspectorCompositeState*, PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*);
77 InspectorPageAgent* m_pageAgent;
PageRuntimeAgent.h 41 class InspectorPageAgent;
47 static PassOwnPtr<PageRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
62 PageRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, ScriptDebugServer*, Page*, InspectorPageAgent*);
71 InspectorPageAgent* m_pageAgent;
InspectorPageAgent.cpp 32 #include "core/inspector/InspectorPageAgent.h"
153 InspectorPageAgent::ResourceType type = InspectorPageAgent::cachedResourceType(*cachedResource);
154 return type == InspectorPageAgent::DocumentResource || type == InspectorPageAgent::StylesheetResource || type == InspectorPageAgent::ScriptResource || type == InspectorPageAgent::XHRResource;
172 bool InspectorPageAgent::cachedResourceContent(Resource* cachedResource, String* result, bool* base64Encoded)
226 bool InspectorPageAgent::sharedBufferContent(PassRefPtr<SharedBuffer> buffer, const String& textEncodingName, bool withBase64Encode, String* result)
231 bool InspectorPageAgent::dataContent(const char* data, unsigned size, const String& textEncodingName, bool withBase64Encod (…)
    [all...]
InspectorApplicationCacheAgent.h 38 class InspectorPageAgent;
46 static PassOwnPtr<InspectorApplicationCacheAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent)
68 InspectorApplicationCacheAgent(InstrumentingAgents*, InspectorCompositeState*, InspectorPageAgent*);
75 InspectorPageAgent* m_pageAgent;
InspectorDOMStorageAgent.h 41 class InspectorPageAgent;
51 static PassOwnPtr<InspectorDOMStorageAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state)
77 InspectorDOMStorageAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorCompositeState*);
82 InspectorPageAgent* m_pageAgent;
InspectorFileSystemAgent.h 40 class InspectorPageAgent;
46 static PassOwnPtr<InspectorFileSystemAgent> create(InstrumentingAgents*, InspectorPageAgent*, InspectorCompositeState*);
62 InspectorFileSystemAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorCompositeState*);
66 InspectorPageAgent* m_pageAgent;
InspectorIndexedDBAgent.h 41 class InspectorPageAgent;
47 static PassOwnPtr<InspectorIndexedDBAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorPageAgent* pageAgent)
65 InspectorIndexedDBAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorPageAgent*);
68 InspectorPageAgent* m_pageAgent;
InspectorCanvasAgent.h 49 class InspectorPageAgent;
57 static PassOwnPtr<InspectorCanvasAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager)
89 InspectorCanvasAgent(InstrumentingAgents*, InspectorCompositeState*, InspectorPageAgent*, InjectedScriptManager*);
99 InspectorPageAgent* m_pageAgent;
NetworkResourcesData.h 32 #include "core/inspector/InspectorPageAgent.h"
101 InspectorPageAgent::ResourceType type() const { return m_type; }
102 void setType(InspectorPageAgent::ResourceType type) { m_type = type; }
137 InspectorPageAgent::ResourceType m_type;
153 void setResourceType(const String& requestId, InspectorPageAgent::ResourceType);
154 InspectorPageAgent::ResourceType resourceType(const String& requestId);
InspectorResourceAgent.h 57 class InspectorPageAgent;
78 static PassOwnPtr<InspectorResourceAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorClient* client, InspectorCompositeState* state, InspectorOverlay* overlay)
149 InspectorResourceAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorClient*, InspectorCompositeState*, InspectorOverlay*);
153 InspectorPageAgent* m_pageAgent;
InspectorPageAgent.h 63 class InspectorPageAgent : public InspectorBaseAgent<InspectorPageAgent>, public InspectorBackendDispatcher::PageCommandHandler {
64 WTF_MAKE_NONCOPYABLE(InspectorPageAgent);
77 static PassOwnPtr<InspectorPageAgent> create(InstrumentingAgents*, Page*, InspectorCompositeState*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
176 InspectorPageAgent(InstrumentingAgents*, Page*, InspectorCompositeState*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
InspectorStyleSheet.h 50 class InspectorPageAgent;
175 static PassRefPtr<InspectorStyleSheet> create(InspectorPageAgent*, const String& id, PassRefPtr<CSSStyleSheet> pageStyleSheet, TypeBuilder::CSS::StyleSheetOrigin::Enum, const String& documentURL, Listener*);
211 InspectorStyleSheet(InspectorPageAgent*, const String& id, PassRefPtr<CSSStyleSheet> pageStyleSheet, TypeBuilder::CSS::StyleSheetOrigin::Enum, const String& documentURL, Listener*);
244 InspectorPageAgent* m_pageAgent;
259 static PassRefPtr<InspectorStyleSheetForInlineStyle> create(InspectorPageAgent*, const String& id, PassRefPtr<Element>, TypeBuilder::CSS::StyleSheetOrigin::Enum, Listener*);
267 InspectorStyleSheetForInlineStyle(InspectorPageAgent*, const String& id, PassRefPtr<Element>, TypeBuilder::CSS::StyleSheetOrigin::Enum, Listener*);
PageDebuggerAgent.cpp 37 #include "core/inspector/InspectorPageAgent.h"
44 PassOwnPtr<PageDebuggerAgent> PageDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
49 PageDebuggerAgent::PageDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
InspectorResourceAgent.cpp 42 #include "core/inspector/InspectorPageAgent.h"
334 cachedResource = InspectorPageAgent::cachedResource(loader->frame(), response.url());
343 InspectorPageAgent::ResourceType type = cachedResource ? InspectorPageAgent::cachedResourceType(*cachedResource) : InspectorPageAgent::OtherResource;
344 if (m_loadingXHRSynchronously || m_resourcesData->resourceType(requestId) == InspectorPageAgent::XHRResource)
345 type = InspectorPageAgent::XHRResource;
346 else if (m_resourcesData->resourceType(requestId) == InspectorPageAgent::ScriptResource)
347 type = InspectorPageAgent::ScriptResource;
349 type = InspectorPageAgent::DocumentResource
    [all...]
InspectorTimelineAgent.h 60 class InspectorPageAgent;
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*);
262 InspectorPageAgent* m_pageAgent;
InspectorDOMAgent.h 59 class InspectorPageAgent;
99 static PassOwnPtr<InspectorDOMAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay, InspectorClient* client)
204 InspectorPageAgent* pageAgent() { return m_pageAgent; }
209 InspectorDOMAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorCompositeState*, InjectedScriptManager*, InspectorOverlay*, InspectorClient*);
243 InspectorPageAgent* m_pageAgent;
NetworkResourcesData.cpp 74 , m_type(InspectorPageAgent::OtherResource)
184 void NetworkResourcesData::setResourceType(const String& requestId, InspectorPageAgent::ResourceType type)
192 InspectorPageAgent::ResourceType NetworkResourcesData::resourceType(const String& requestId)
196 return InspectorPageAgent::OtherResource;
InspectorCSSAgent.h 97 static PassOwnPtr<InspectorCSSAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorDOMAgent* domAgent, InspectorPageAgent* pageAgent)
155 InspectorCSSAgent(InstrumentingAgents*, InspectorCompositeState*, InspectorDOMAgent*, InspectorPageAgent*);
196 InspectorPageAgent* m_pageAgent;
InspectorController.cpp 60 #include "core/inspector/InspectorPageAgent.h"
86 OwnPtr<InspectorPageAgent> pageAgentPtr(InspectorPageAgent::create(m_instrumentingAgents.get(), page, m_state.get(), m_injectedScriptManager.get(), inspectorClient, m_overlay.get()));
87 InspectorPageAgent* pageAgent = pageAgentPtr.get();
252 if (InspectorPageAgent* pageAgent = m_instrumentingAgents->inspectorPageAgent())
InspectorApplicationCacheAgent.cpp 30 #include "core/inspector/InspectorPageAgent.h"
45 InspectorApplicationCacheAgent::InspectorApplicationCacheAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent)
129 return InspectorPageAgent::assertDocumentLoader(errorString, frame);
PageRuntimeAgent.cpp 38 #include "core/inspector/InspectorPageAgent.h"
54 PageRuntimeAgent::PageRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
InspectorDOMStorageAgent.cpp 38 #include "core/inspector/InspectorPageAgent.h"
72 InspectorDOMStorageAgent::InspectorDOMStorageAgent(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state)
InspectorCanvasAgent.cpp 44 #include "core/inspector/InspectorPageAgent.h"
65 InspectorCanvasAgent::InspectorCanvasAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager)
InspectorStyleSheet.cpp 52 #include "core/inspector/InspectorPageAgent.h"
    [all...]
InspectorFileSystemAgent.cpp 42 #include "core/inspector/InspectorPageAgent.h"
604 PassOwnPtr<InspectorFileSystemAgent> InspectorFileSystemAgent::create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state)
704 InspectorFileSystemAgent::InspectorFileSystemAgent(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state)

Completed in 325 milliseconds

1 2