HomeSort by relevance Sort by last modified time
    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.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, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager)
44 return adoptPtr(new WorkerConsoleAgent(instrumentingAgents, state, injectedScriptManager));
51 WorkerConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*);
WorkerConsoleAgent.cpp 37 WorkerConsoleAgent::WorkerConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager)
38 : InspectorConsoleAgent(instrumentingAgents, state, injectedScriptManager)
PageConsoleAgent.h 44 static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent)
46 return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent));
53 PageConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorDOMAgent*);
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();
69 explicit InjectedScriptManager(InspectedStateAccessCheck);
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 45 class InjectedScriptManager;
57 static PassOwnPtr<InspectorAgent> create(Page* page, InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
59 return adoptPtr(new InspectorAgent(page, injectedScriptManager, instrumentingAgents, state));
92 InspectorAgent(Page*, InjectedScriptManager*, InstrumentingAgents*, InspectorCompositeState*);
102 InjectedScriptManager* m_injectedScriptManager;
InspectorHeapProfilerAgent.h 45 class InjectedScriptManager;
54 static PassOwnPtr<InspectorHeapProfilerAgent> create(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*);
79 InspectorHeapProfilerAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*);
89 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;
InspectorRuntimeAgent.h 42 class InjectedScriptManager;
83 InspectorRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, ScriptDebugServer*);
89 InjectedScriptManager* injectedScriptManager() { return m_injectedScriptManager; }
93 InjectedScriptManager* m_injectedScriptManager;
PageDebuggerAgent.h 51 static PassOwnPtr<PageDebuggerAgent> create(InstrumentingAgents*, InspectorCompositeState*, PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*);
75 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;
74 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;
InspectorProfilerAgent.h 43 class InjectedScriptManager;
55 static PassOwnPtr<InspectorProfilerAgent> create(InstrumentingAgents*, InspectorConsoleAgent*, InspectorCompositeState*, InjectedScriptManager*);
84 InspectorProfilerAgent(InstrumentingAgents*, InspectorConsoleAgent*, InspectorCompositeState*, InjectedScriptManager*);
94 InjectedScriptManager* m_injectedScriptManager;
InspectorConsoleAgent.h 47 class InjectedScriptManager;
62 InspectorConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*);
104 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*);
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;
126 OwnPtr<InjectedScriptManager> m_injectedScriptManager;
PageDebuggerAgent.cpp 44 PassOwnPtr<PageDebuggerAgent> PageDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
46 return adoptPtr(new PageDebuggerAgent(instrumentingAgents, inspectorState, pageScriptDebugServer, pageAgent, injectedScriptManager, overlay));
49 PageDebuggerAgent::PageDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
50 : InspectorDebuggerAgent(instrumentingAgents, inspectorState, injectedScriptManager)
120 return injectedScriptManager()->injectedScriptFor(scriptState);
122 InjectedScript injectedScript = injectedScriptManager()->injectedScriptForId(*executionContextId);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp 32 #include "core/inspector/InjectedScriptManager.h"
65 weakHandle.MakeWeak(host, &InjectedScriptManager::makeWeakCallback);
69 ScriptObject InjectedScriptManager::createInjectedScript(const String& scriptSource, ScriptState* inspectedScriptState, int id)
100 bool InjectedScriptManager::canAccessInspectedWindow(ScriptState* scriptState)
118 void InjectedScriptManager::makeWeakCallback(v8::Isolate* isolate, v8::Persistent<v8::Object>* object, InjectedScriptHost* host)

Completed in 445 milliseconds

1 2 3