OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inspectorpageagent
(Results
1 - 25
of
42
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/inspector/
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;
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;
InspectorCanvasAgent.h
49
class
InspectorPageAgent
;
57
static PassOwnPtrWillBeRawPtr<InspectorCanvasAgent> create(
InspectorPageAgent
* pageAgent, InjectedScriptManager* injectedScriptManager)
90
InspectorCanvasAgent(
InspectorPageAgent
*, InjectedScriptManager*);
100
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;
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);
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.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*);
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
...]
InspectorController.h
58
class
InspectorPageAgent
;
154
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;
InspectorApplicationCacheAgent.cpp
30
#include "core/inspector/
InspectorPageAgent
.h"
44
InspectorApplicationCacheAgent::InspectorApplicationCacheAgent(
InspectorPageAgent
* pageAgent)
129
return
InspectorPageAgent
::assertDocumentLoader(errorString, frame);
InspectorCSSAgent.h
100
static PassOwnPtrWillBeRawPtr<InspectorCSSAgent> create(InspectorDOMAgent* domAgent,
InspectorPageAgent
* pageAgent, InspectorResourceAgent* resourceAgent)
158
InspectorCSSAgent(InspectorDOMAgent*,
InspectorPageAgent
*, InspectorResourceAgent*);
201
RawPtrWillBeMember<
InspectorPageAgent
> m_pageAgent;
InspectorDOMAgent.h
59
class
InspectorPageAgent
;
98
static PassOwnPtrWillBeRawPtr<InspectorDOMAgent> create(
InspectorPageAgent
* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
220
InspectorDOMAgent(
InspectorPageAgent
*, InjectedScriptManager*, InspectorOverlay*);
258
RawPtrWillBeMember<
InspectorPageAgent
> m_pageAgent;
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;
NetworkResourcesData.cpp
75
, m_type(
InspectorPageAgent
::OtherResource)
188
void NetworkResourcesData::setResourceType(const String& requestId,
InspectorPageAgent
::ResourceType type)
196
InspectorPageAgent
::ResourceType NetworkResourcesData::resourceType(const String& requestId)
200
return
InspectorPageAgent
::OtherResource;
InspectorDOMStorageAgent.cpp
38
#include "core/inspector/
InspectorPageAgent
.h"
70
InspectorDOMStorageAgent::InspectorDOMStorageAgent(
InspectorPageAgent
* pageAgent)
InspectorResourceContentLoader.cpp
20
#include "core/inspector/
InspectorPageAgent
.h"
92
documents.appendVector(
InspectorPageAgent
::importsForFrame(localFrame));
PageRuntimeAgent.cpp
42
#include "core/inspector/
InspectorPageAgent
.h"
49
PageRuntimeAgent::PageRuntimeAgent(InjectedScriptManager* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebugServer, Page* page,
InspectorPageAgent
* pageAgent)
InspectorController.cpp
56
#include "core/inspector/
InspectorPageAgent
.h"
94
OwnPtrWillBeRawPtr<
InspectorPageAgent
> pageAgentPtr(
InspectorPageAgent
::create(m_page, injectedScriptManager, inspectorClient, overlay));
510
if (
InspectorPageAgent
* pageAgent = m_instrumentingAgents->
inspectorPageAgent
())
InspectorCanvasAgent.cpp
41
#include "core/inspector/
InspectorPageAgent
.h"
62
InspectorCanvasAgent::InspectorCanvasAgent(
InspectorPageAgent
* pageAgent, InjectedScriptManager* injectedScriptManager)
InspectorDebuggerAgent.cpp
43
#include "core/inspector/
InspectorPageAgent
.h"
659
if (
InspectorPageAgent
* pageAgent = m_instrumentingAgents->
inspectorPageAgent
())
691
if (
InspectorPageAgent
* pageAgent = m_instrumentingAgents->
inspectorPageAgent
()) {
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
ResourceType.js
112
* Keep these in sync with WebCore::
InspectorPageAgent
::resourceTypeJson
Completed in 4783 milliseconds
1
2