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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PageDebuggerAgent.h 42 class InspectorPageAgent;
54 static PassOwnPtrWillBeRawPtr<PageDebuggerAgent> create(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*);
79 PageDebuggerAgent(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*);
82 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
PageRuntimeAgent.h 41 class InspectorPageAgent;
47 static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
62 PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer*, Page*, InspectorPageAgent*);
71 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
InspectorPageAgent.cpp 32 #include "core/inspector/InspectorPageAgent.h"
148 class InspectorPageAgent::GetResourceContentLoadListener FINAL : public VoidCallback {
150 GetResourceContentLoadListener(InspectorPageAgent*, const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback>);
154 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
160 InspectorPageAgent::GetResourceContentLoadListener::GetResourceContentLoadListener(InspectorPageAgent* pageAgent, const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback> callback)
168 void InspectorPageAgent::GetResourceContentLoadListener::trace(Visitor* visitor)
175 void InspectorPageAgent::GetResourceContentLoadListener::handleEvent()
225 InspectorPageAgent::ResourceType type = InspectorPageAgent::cachedResourceType(*cachedResource)
    [all...]
InspectorApplicationCacheAgent.h 38 class InspectorPageAgent;
47 static PassOwnPtrWillBeRawPtr<InspectorApplicationCacheAgent> create(InspectorPageAgent* pageAgent)
70 InspectorApplicationCacheAgent(InspectorPageAgent*);
77 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
InspectorDOMStorageAgent.h 41 class InspectorPageAgent;
51 static PassOwnPtrWillBeRawPtr<InspectorDOMStorageAgent> create(InspectorPageAgent* pageAgent)
74 explicit InspectorDOMStorageAgent(InspectorPageAgent*);
80 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
InspectorCanvasAgent.h 49 class InspectorPageAgent;
57 static PassOwnPtrWillBeRawPtr<InspectorCanvasAgent> create(InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager)
90 InspectorCanvasAgent(InspectorPageAgent*, InjectedScriptManager*);
100 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
NetworkResourcesData.h 34 #include "core/inspector/InspectorPageAgent.h"
107 InspectorPageAgent::ResourceType type() const { return m_type; }
108 void setType(InspectorPageAgent::ResourceType type) { m_type = type; }
143 InspectorPageAgent::ResourceType m_type;
159 void setResourceType(const String& requestId, InspectorPageAgent::ResourceType);
160 InspectorPageAgent::ResourceType resourceType(const String& requestId);
InspectorResourceAgent.h 56 class InspectorPageAgent;
77 static PassOwnPtrWillBeRawPtr<InspectorResourceAgent> create(InspectorPageAgent* pageAgent)
153 explicit InspectorResourceAgent(InspectorPageAgent*);
159 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
InspectorPageAgent.h 65 class InspectorPageAgent FINAL : public InspectorBaseAgent<InspectorPageAgent>, public InspectorBackendDispatcher::PageCommandHandler {
66 WTF_MAKE_NONCOPYABLE(InspectorPageAgent);
81 static PassOwnPtrWillBeRawPtr<InspectorPageAgent> create(Page*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
183 InspectorPageAgent(Page*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
InspectorController.h 58 class InspectorPageAgent;
154 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
PageDebuggerAgent.cpp 40 #include "core/inspector/InspectorPageAgent.h"
47 PassOwnPtrWillBeRawPtr<PageDebuggerAgent> PageDebuggerAgent::create(PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
52 PageDebuggerAgent::PageDebuggerAgent(PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
InspectorResourceAgent.cpp 47 #include "core/inspector/InspectorPageAgent.h"
386 cachedResource = InspectorPageAgent::cachedResource(frame, response.url());
395 InspectorPageAgent::ResourceType type = cachedResource ? InspectorPageAgent::cachedResourceType(*cachedResource) : InspectorPageAgent::OtherResource;
397 if (m_resourcesData->resourceType(requestId) == InspectorPageAgent::ScriptResource)
398 type = InspectorPageAgent::ScriptResource;
401 type = InspectorPageAgent::DocumentResource;
407 m_frontend->responseReceived(requestId, m_pageAgent->frameId(frame), m_pageAgent->loaderId(loader), currentTime(), InspectorPageAgent::resourceTypeJson(type), resourceResponse);
457 m_frontend->loadingFailed(requestId, currentTime(), InspectorPageAgent::resourceTypeJson(m_resourcesData->resourceType(requestId)), error.localizedDescription(), cancele (…)
    [all...]
InspectorStyleSheet.h 52 class InspectorPageAgent;
191 static PassRefPtrWillBeRawPtr<InspectorStyleSheet> create(InspectorPageAgent*, InspectorResourceAgent*, const String& id, PassRefPtrWillBeRawPtr<CSSStyleSheet> pageStyleSheet, TypeBuilder::CSS::StyleSheetOrigin::Enum, const String& documentURL, Listener*);
232 InspectorStyleSheet(InspectorPageAgent*, InspectorResourceAgent*, const String& id, PassRefPtrWillBeRawPtr<CSSStyleSheet> pageStyleSheet, TypeBuilder::CSS::StyleSheetOrigin::Enum, const String& documentURL, Listener*);
256 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
InspectorTimelineAgent.h 70 class InspectorPageAgent;
116 static PassOwnPtrWillBeRawPtr<InspectorTimelineAgent> create(InspectorPageAgent* pageAgent, InspectorLayerTreeAgent* layerTreeAgent,
234 InspectorTimelineAgent(InspectorPageAgent*, InspectorLayerTreeAgent*, InspectorOverlay*, InspectorType, InspectorClient*);
289 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;