OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebSharedWorker
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebKit/chromium/public/
WebSharedWorkerRepository.h
39
class
WebSharedWorker
;
48
virtual void addSharedWorker(
WebSharedWorker
*, DocumentID) = 0;
WebSharedWorker.h
49
class
WebSharedWorker
{
51
// Invoked from the worker thread to instantiate a
WebSharedWorker
that interacts with the WebKit worker components.
52
WEBKIT_API static
WebSharedWorker
* create(WebCommonWorkerClient*);
54
virtual ~
WebSharedWorker
() {};
WebFrameClient.h
55
class
WebSharedWorker
;
79
virtual
WebSharedWorker
* createSharedWorker(WebFrame*, const WebURL&, const WebString&, unsigned long long) { return 0; }
/external/webkit/Source/WebKit/chromium/src/
WebSharedWorkerImpl.h
34
#include "
WebSharedWorker
.h"
48
class WebSharedWorkerImpl : public WebWorkerBase, public
WebSharedWorker
{
52
//
WebSharedWorker
methods:
WebSharedWorkerImpl.cpp
120
WebSharedWorker
*
WebSharedWorker
::create(WebCommonWorkerClient* client)
SharedWorkerRepository.cpp
49
#include "
WebSharedWorker
.h"
61
using WebKit::
WebSharedWorker
;
64
// Callback class that keeps the SharedWorker and
WebSharedWorker
objects alive while loads are potentially happening, and also translates load errors into error events on the worker.
65
class SharedWorkerScriptLoader : private WorkerScriptLoaderClient, private
WebSharedWorker
::ConnectListener {
67
SharedWorkerScriptLoader(PassRefPtr<SharedWorker> worker, const KURL& url, const String& name, PassOwnPtr<MessagePortChannel> port, PassOwnPtr<
WebSharedWorker
> webWorker)
97
OwnPtr<
WebSharedWorker
> m_webWorker;
206
OwnPtr<
WebSharedWorker
> webWorker;
Completed in 60 milliseconds