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

  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorker.h 41 class SharedWorker : public AbstractWorker, public ScriptWrappable {
43 static PassRefPtr<SharedWorker> create(ScriptExecutionContext*, const String& url, const String& name, ExceptionState&);
44 virtual ~SharedWorker();
51 explicit SharedWorker(ScriptExecutionContext*);
SharedWorker.cpp 33 #include "core/workers/SharedWorker.h"
48 inline SharedWorker::SharedWorker(ScriptExecutionContext* context)
54 PassRefPtr<SharedWorker> SharedWorker::create(ScriptExecutionContext* context, const String& url, const String& name, ExceptionState& es)
59 RefPtr<SharedWorker> worker = adoptRef(new SharedWorker(context));
85 SharedWorker::~SharedWorker()
89 const AtomicString& SharedWorker::interfaceName() cons
    [all...]

Completed in 56 milliseconds