OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InjectedScriptManager
(Results
1 - 25
of
52
) sorted by null
1
2
3
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptModule.h
40
class
InjectedScriptManager
;
52
void ensureInjected(
InjectedScriptManager
*, ScriptState*);
InjectedScriptManager.h
45
class
InjectedScriptManager
{
46
WTF_MAKE_NONCOPYABLE(
InjectedScriptManager
); WTF_MAKE_FAST_ALLOCATED;
48
static PassOwnPtr<
InjectedScriptManager
> createForPage();
49
static PassOwnPtr<
InjectedScriptManager
> createForWorker();
50
~
InjectedScriptManager
();
70
explicit
InjectedScriptManager
(InspectedStateAccessCheck);
InjectedScriptManager.cpp
32
#include "core/inspector/
InjectedScriptManager
.h"
44
PassOwnPtr<
InjectedScriptManager
>
InjectedScriptManager
::createForPage()
46
return adoptPtr(new
InjectedScriptManager
(&
InjectedScriptManager
::canAccessInspectedWindow));
49
PassOwnPtr<
InjectedScriptManager
>
InjectedScriptManager
::createForWorker()
51
return adoptPtr(new
InjectedScriptManager
(&
InjectedScriptManager
::canAccessInspectedWorkerGlobalScope));
54
InjectedScriptManager
::InjectedScriptManager(InspectedStateAccessCheck accessCheck
[
all
...]
WorkerConsoleAgent.h
42
static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorTimelineAgent* timelineAgent, InspectorCompositeState* state,
InjectedScriptManager
*
injectedScriptManager
)
44
return adoptPtr(new WorkerConsoleAgent(instrumentingAgents, timelineAgent, state,
injectedScriptManager
));
51
WorkerConsoleAgent(InstrumentingAgents*, InspectorTimelineAgent*, InspectorCompositeState*,
InjectedScriptManager
*);
PageConsoleAgent.h
44
static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state,
InjectedScriptManager
*
injectedScriptManager
, InspectorDOMAgent* domAgent, InspectorTimelineAgent* timelineAgent)
46
return adoptPtr(new PageConsoleAgent(instrumentingAgents, state,
injectedScriptManager
, domAgent, timelineAgent));
53
PageConsoleAgent(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*, InspectorDOMAgent*, InspectorTimelineAgent*);
WorkerDebuggerAgent.h
46
static PassOwnPtr<WorkerDebuggerAgent> create(InstrumentingAgents*, InspectorCompositeState*, WorkerScriptDebugServer*, WorkerGlobalScope*,
InjectedScriptManager
*);
53
WorkerDebuggerAgent(InstrumentingAgents*, InspectorCompositeState*, WorkerScriptDebugServer*, WorkerGlobalScope*,
InjectedScriptManager
*);
WorkerRuntimeAgent.h
43
static PassOwnPtr<WorkerRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state,
InjectedScriptManager
*
injectedScriptManager
, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* context)
45
return adoptPtr(new WorkerRuntimeAgent(instrumentingAgents, state,
injectedScriptManager
, scriptDebugServer, context));
55
WorkerRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*, ScriptDebugServer*, WorkerGlobalScope*);
InspectorAgent.h
43
class
InjectedScriptManager
;
54
static PassOwnPtr<InspectorAgent> create(Page* page,
InjectedScriptManager
*
injectedScriptManager
, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
56
return adoptPtr(new InspectorAgent(page,
injectedScriptManager
, instrumentingAgents, state));
84
InspectorAgent(Page*,
InjectedScriptManager
*, InstrumentingAgents*, InspectorCompositeState*);
88
InjectedScriptManager
* m_injectedScriptManager;
InspectorHeapProfilerAgent.h
45
class
InjectedScriptManager
;
54
static PassOwnPtr<InspectorHeapProfilerAgent> create(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*);
80
InspectorHeapProfilerAgent(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*);
91
InjectedScriptManager
* m_injectedScriptManager;
InspectorIndexedDBAgent.h
40
class
InjectedScriptManager
;
47
static PassOwnPtr<InspectorIndexedDBAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state,
InjectedScriptManager
*
injectedScriptManager
, InspectorPageAgent* pageAgent)
49
return adoptPtr(new InspectorIndexedDBAgent(instrumentingAgents, state,
injectedScriptManager
, pageAgent));
65
InspectorIndexedDBAgent(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*, InspectorPageAgent*);
67
InjectedScriptManager
* m_injectedScriptManager;
InspectorProfilerAgent.h
43
class
InjectedScriptManager
;
56
static PassOwnPtr<InspectorProfilerAgent> create(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*, InspectorOverlay*);
78
InspectorProfilerAgent(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*, InspectorOverlay*);
83
InjectedScriptManager
* m_injectedScriptManager;
InspectorRuntimeAgent.h
42
class
InjectedScriptManager
;
82
InspectorRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*, ScriptDebugServer*);
88
InjectedScriptManager
*
injectedScriptManager
() { return m_injectedScriptManager; }
92
InjectedScriptManager
* m_injectedScriptManager;
WorkerConsoleAgent.cpp
37
WorkerConsoleAgent::WorkerConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorTimelineAgent* timelineAgent, InspectorCompositeState* state,
InjectedScriptManager
*
injectedScriptManager
)
38
: InspectorConsoleAgent(instrumentingAgents, timelineAgent, state,
injectedScriptManager
)
PageDebuggerAgent.h
53
static PassOwnPtr<PageDebuggerAgent> create(InstrumentingAgents*, InspectorCompositeState*, PageScriptDebugServer*, InspectorPageAgent*,
InjectedScriptManager
*, InspectorOverlay*);
79
PageDebuggerAgent(InstrumentingAgents*, InspectorCompositeState*, PageScriptDebugServer*, InspectorPageAgent*,
InjectedScriptManager
*, InspectorOverlay*);
PageRuntimeAgent.h
47
static PassOwnPtr<PageRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state,
InjectedScriptManager
*
injectedScriptManager
, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
49
return adoptPtr(new PageRuntimeAgent(instrumentingAgents, state,
injectedScriptManager
, scriptDebugServer, page, pageAgent));
62
PageRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*,
InjectedScriptManager
*, ScriptDebugServer*, Page*, InspectorPageAgent*);
WorkerInspectorController.h
43
class
InjectedScriptManager
;
73
OwnPtr<
InjectedScriptManager
> m_injectedScriptManager;
InspectorCanvasAgent.h
48
class
InjectedScriptManager
;
57
static PassOwnPtr<InspectorCanvasAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent,
InjectedScriptManager
*
injectedScriptManager
)
59
return adoptPtr(new InspectorCanvasAgent(instrumentingAgents, state, pageAgent,
injectedScriptManager
));
89
InspectorCanvasAgent(InstrumentingAgents*, InspectorCompositeState*, InspectorPageAgent*,
InjectedScriptManager
*);
100
InjectedScriptManager
* m_injectedScriptManager;
ConsoleMessage.h
43
class
InjectedScriptManager
;
59
void addToFrontend(InspectorFrontend::Console*,
InjectedScriptManager
*, bool generatePreview);
InjectedScriptCanvasModule.h
40
class
InjectedScriptManager
;
50
static InjectedScriptCanvasModule moduleForState(
InjectedScriptManager
*, ScriptState*);
InspectorConsoleAgent.h
48
class
InjectedScriptManager
;
65
InspectorConsoleAgent(InstrumentingAgents*, InspectorTimelineAgent*, InspectorCompositeState*,
InjectedScriptManager
*);
111
InjectedScriptManager
* m_injectedScriptManager;
InjectedScriptModule.cpp
38
#include "core/inspector/
InjectedScriptManager
.h"
47
void InjectedScriptModule::ensureInjected(
InjectedScriptManager
*
injectedScriptManager
, ScriptState* scriptState)
49
InjectedScript injectedScript =
injectedScriptManager
->injectedScriptFor(scriptState);
73
initialize(moduleObject,
injectedScriptManager
->inspectedStateAccessCheck());
WorkerRuntimeAgent.cpp
45
WorkerRuntimeAgent::WorkerRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state,
InjectedScriptManager
*
injectedScriptManager
, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* workerGlobalScope)
46
: InspectorRuntimeAgent(instrumentingAgents, state,
injectedScriptManager
, scriptDebugServer)
65
return
injectedScriptManager
()->injectedScriptFor(scriptState);
InspectorController.h
45
class
InjectedScriptManager
;
129
OwnPtr<
InjectedScriptManager
> m_injectedScriptManager;
WorkerDebuggerAgent.cpp
81
PassOwnPtr<WorkerDebuggerAgent> WorkerDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope,
InjectedScriptManager
*
injectedScriptManager
)
83
return adoptPtr(new WorkerDebuggerAgent(instrumentingAgents, inspectorState, scriptDebugServer, inspectedWorkerGlobalScope,
injectedScriptManager
));
86
WorkerDebuggerAgent::WorkerDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope,
InjectedScriptManager
*
injectedScriptManager
)
87
: InspectorDebuggerAgent(instrumentingAgents, inspectorState,
injectedScriptManager
)
132
return
injectedScriptManager
()->injectedScriptFor(scriptState);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp
32
#include "core/inspector/
InjectedScriptManager
.h"
49
struct
InjectedScriptManager
::CallbackData {
69
InjectedScriptManager
::CallbackData* data = new
InjectedScriptManager
::CallbackData;
72
data->handle.setWeak(data, &
InjectedScriptManager
::setWeakCallback);
76
ScriptObject
InjectedScriptManager
::createInjectedScript(const String& scriptSource, ScriptState* inspectedScriptState, int id)
107
bool
InjectedScriptManager
::canAccessInspectedWindow(ScriptState* scriptState)
125
void
InjectedScriptManager
::setWeakCallback(const v8::WeakCallbackData<v8::Object,
InjectedScriptManager
::CallbackData>& data)
Completed in 50 milliseconds
1
2
3