HomeSort by relevance Sort by last modified time
    Searched refs:WebSharedWorker (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/public/web/
WebSharedWorkerRepository.h 39 class WebSharedWorker;
48 virtual void addSharedWorker(WebSharedWorker*, DocumentID) = 0;
WebSharedWorker.h 50 class WebSharedWorker {
52 // Invoked from the worker thread to instantiate a WebSharedWorker that interacts with the WebKit worker components.
53 WEBKIT_EXPORT static WebSharedWorker* create(WebSharedWorkerClient*);
55 virtual ~WebSharedWorker() {};
WebFrameClient.h 64 class WebSharedWorker;
86 virtual WebSharedWorker* createSharedWorker(WebFrame*, const WebURL&, const WebString&, unsigned long long) { return 0; }
  /external/chromium_org/content/renderer/
websharedworkerrepository_impl.h 12 class WebSharedWorker;
22 virtual void addSharedWorker(WebKit::WebSharedWorker*, DocumentID document);
websharedworkerrepository_impl.cc 18 WebKit::WebSharedWorker* worker, DocumentID document) {
websharedworker_proxy.h 14 #include "third_party/WebKit/public/web/WebSharedWorker.h"
21 // Implementation of the WebSharedWorker APIs. This object is intended to only
24 // happen via the WebMessagePortChannel, and the WebSharedWorker instance will
26 class WebSharedWorkerProxy : public WebKit::WebSharedWorker,
37 // Implementations of WebSharedWorker APIs
render_frame_impl.h 43 virtual WebKit::WebSharedWorker* createSharedWorker(
render_frame_impl.cc 159 WebKit::WebSharedWorker* RenderFrameImpl::createSharedWorker(
    [all...]
render_view_impl.h 550 virtual WebKit::WebSharedWorker* createSharedWorker(
    [all...]
render_view_impl.cc 320 using WebKit::WebSharedWorker;
    [all...]
  /external/chromium_org/content/worker/
shared_worker_devtools_agent.h 17 class WebSharedWorker;
25 SharedWorkerDevToolsAgent(int route_id, WebKit::WebSharedWorker*);
43 WebKit::WebSharedWorker* webworker_;
websharedworker_stub.h 12 #include "third_party/WebKit/public/web/WebSharedWorker.h"
16 class WebSharedWorker;
23 // This class creates a WebSharedWorker, and translates incoming IPCs to the
24 // appropriate WebSharedWorker APIs.
69 WebKit::WebSharedWorker* impl_;
shared_worker_devtools_agent.cc 11 #include "third_party/WebKit/public/web/WebSharedWorker.h"
13 using WebKit::WebSharedWorker;
20 WebSharedWorker* webworker)
websharedworker_stub.cc 15 #include "third_party/WebKit/public/web/WebSharedWorker.h"
39 impl_ = WebKit::WebSharedWorker::create(client());
  /external/chromium_org/third_party/WebKit/Source/web/
SharedWorkerRepository.cpp 38 #include "WebSharedWorker.h"
81 using WebKit::WebSharedWorker;
84 // 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.
85 class SharedWorkerScriptLoader : private WorkerScriptLoaderClient, private WebSharedWorker::ConnectListener {
87 SharedWorkerScriptLoader(PassRefPtr<SharedWorker> worker, const KURL& url, const String& name, PassOwnPtr<MessagePortChannel> port, PassOwnPtr<WebSharedWorker> webWorker)
118 OwnPtr<WebSharedWorker> m_webWorker;
233 OwnPtr<WebSharedWorker> webWorker;
WebSharedWorkerImpl.h 34 #include "WebSharedWorker.h"
68 , public WebSharedWorker {
99 // WebSharedWorker methods:
WebSharedWorkerImpl.cpp 452 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client)

Completed in 528 milliseconds