HomeSort by relevance Sort by last modified time
    Searched defs:isSharedWorker (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/inspector/
InspectorWorkerResource.h 45 static PassRefPtr<InspectorWorkerResource> create(intptr_t id, const String& url, bool isSharedWorker)
47 return adoptRef(new InspectorWorkerResource(id, url, isSharedWorker));
52 bool isSharedWorker() const { return m_isSharedWorker; }
54 InspectorWorkerResource(intptr_t id, const String& url, bool isSharedWorker)
57 , m_isSharedWorker(isSharedWorker)
InjectedScriptHost.cpp 169 void InjectedScriptHost::didCreateWorker(long id, const String& url, bool isSharedWorker)
172 m_inspectorAgent->didCreateWorker(static_cast<int>(id), url, isSharedWorker);

Completed in 109 milliseconds