Searched refs:isSharedWorker (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/inspector/
H A DInspectorWorkerResource.h45 static PassRefPtr<InspectorWorkerResource> create(intptr_t id, const String& url, bool isSharedWorker) argument
47 return adoptRef(new InspectorWorkerResource(id, url, isSharedWorker));
52 bool isSharedWorker() const { return m_isSharedWorker; } function in class:WebCore::InspectorWorkerResource
54 InspectorWorkerResource(intptr_t id, const String& url, bool isSharedWorker) argument
57 , m_isSharedWorker(isSharedWorker)
H A DInjectedScriptHost.cpp169 void InjectedScriptHost::didCreateWorker(long id, const String& url, bool isSharedWorker) argument
172 m_inspectorAgent->didCreateWorker(static_cast<int>(id), url, isSharedWorker); local
H A DInjectedScriptHost.h112 void didCreateWorker(long id, const String& url, bool isSharedWorker);
H A DInspectorAgent.cpp252 m_frontend->inspector()->didCreateWorker(worker->id(), worker->url(), worker->isSharedWorker());
352 m_frontend->inspector()->didCreateWorker(worker.id(), worker.url(), worker.isSharedWorker());
361 void InspectorAgent::didCreateWorker(intptr_t id, const String& url, bool isSharedWorker) argument
366 RefPtr<InspectorWorkerResource> workerResource(InspectorWorkerResource::create(id, url, isSharedWorker));
H A DInspectorAgent.h152 void didCreateWorker(intptr_t, const String& url, bool isSharedWorker);
H A DInspectorInstrumentation.h160 static void didCreateWorker(ScriptExecutionContext*, intptr_t id, const String& url, bool isSharedWorker);
280 static void didCreateWorkerImpl(InspectorAgent*, intptr_t id, const String& url, bool isSharedWorker);
804 inline void InspectorInstrumentation::didCreateWorker(ScriptExecutionContext* context, intptr_t id, const String& url, bool isSharedWorker) argument
808 didCreateWorkerImpl(inspectorAgent, id, url, isSharedWorker);
H A DInspectorInstrumentation.cpp713 void InspectorInstrumentation::didCreateWorkerImpl(InspectorAgent* inspectorAgent, intptr_t id, const String& url, bool isSharedWorker) argument
715 inspectorAgent->didCreateWorker(id, url, isSharedWorker);

Completed in 72 milliseconds