OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/shared_worker_repository.h" | 5 #include "content/renderer/shared_worker_repository.h" |
6 | 6 |
7 #include "content/child/child_thread.h" | 7 #include "content/child/child_thread_impl.h" |
8 #include "content/common/view_messages.h" | 8 #include "content/common/view_messages.h" |
9 #include "content/renderer/render_frame_impl.h" | 9 #include "content/renderer/render_frame_impl.h" |
10 #include "content/renderer/websharedworker_proxy.h" | 10 #include "content/renderer/websharedworker_proxy.h" |
11 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" | 11 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" |
12 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 12 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
13 | 13 |
14 namespace content { | 14 namespace content { |
15 | 15 |
16 SharedWorkerRepository::SharedWorkerRepository(RenderFrameImpl* render_frame) | 16 SharedWorkerRepository::SharedWorkerRepository(RenderFrameImpl* render_frame) |
17 : RenderFrameObserver(render_frame) { | 17 : RenderFrameObserver(render_frame) { |
(...skipping 14 matching lines...) Expand all Loading... |
32 params.url = url; | 32 params.url = url; |
33 params.name = name; | 33 params.name = name; |
34 params.content_security_policy = content_security_policy; | 34 params.content_security_policy = content_security_policy; |
35 params.security_policy_type = security_policy_type; | 35 params.security_policy_type = security_policy_type; |
36 params.document_id = document_id; | 36 params.document_id = document_id; |
37 params.render_frame_route_id = render_frame()->GetRoutingID(); | 37 params.render_frame_route_id = render_frame()->GetRoutingID(); |
38 Send(new ViewHostMsg_CreateWorker(params, &route_id)); | 38 Send(new ViewHostMsg_CreateWorker(params, &route_id)); |
39 if (route_id == MSG_ROUTING_NONE) | 39 if (route_id == MSG_ROUTING_NONE) |
40 return NULL; | 40 return NULL; |
41 documents_with_workers_.insert(document_id); | 41 documents_with_workers_.insert(document_id); |
42 return new WebSharedWorkerProxy(ChildThread::current()->GetRouter(), | 42 return new WebSharedWorkerProxy(ChildThreadImpl::current()->GetRouter(), |
43 document_id, | 43 document_id, |
44 route_id, | 44 route_id, |
45 params.render_frame_route_id); | 45 params.render_frame_route_id); |
46 } | 46 } |
47 | 47 |
48 void SharedWorkerRepository::documentDetached(DocumentID document) { | 48 void SharedWorkerRepository::documentDetached(DocumentID document) { |
49 std::set<DocumentID>::iterator iter = documents_with_workers_.find(document); | 49 std::set<DocumentID>::iterator iter = documents_with_workers_.find(document); |
50 if (iter != documents_with_workers_.end()) { | 50 if (iter != documents_with_workers_.end()) { |
51 // Notify the browser process that the document has shut down. | 51 // Notify the browser process that the document has shut down. |
52 Send(new ViewHostMsg_DocumentDetached(document)); | 52 Send(new ViewHostMsg_DocumentDetached(document)); |
53 documents_with_workers_.erase(iter); | 53 documents_with_workers_.erase(iter); |
54 } | 54 } |
55 } | 55 } |
56 | 56 |
57 } // namespace content | 57 } // namespace content |
OLD | NEW |