Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: content/renderer/shared_worker/shared_worker_repository.cc

Issue 2623613004: SharedWorker: Move classes under content/renderer to content/renderer/shared_worker (Closed)
Patch Set: fix include guards Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/shared_worker_repository.h"
6 6
7 #include "content/child/child_thread_impl.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/shared_worker/websharedworker_proxy.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 SharedWorkerRepository::SharedWorkerRepository(RenderFrameImpl* render_frame) 14 SharedWorkerRepository::SharedWorkerRepository(RenderFrameImpl* render_frame)
15 : render_frame_(render_frame){}; 15 : render_frame_(render_frame){};
16 16
17 SharedWorkerRepository::~SharedWorkerRepository() = default; 17 SharedWorkerRepository::~SharedWorkerRepository() = default;
18 18
19 std::unique_ptr<blink::WebSharedWorkerConnector> 19 std::unique_ptr<blink::WebSharedWorkerConnector>
20 SharedWorkerRepository::createSharedWorkerConnector( 20 SharedWorkerRepository::createSharedWorkerConnector(
(...skipping 25 matching lines...) Expand all
46 void SharedWorkerRepository::documentDetached(DocumentID document) { 46 void SharedWorkerRepository::documentDetached(DocumentID document) {
47 std::set<DocumentID>::iterator iter = documents_with_workers_.find(document); 47 std::set<DocumentID>::iterator iter = documents_with_workers_.find(document);
48 if (iter != documents_with_workers_.end()) { 48 if (iter != documents_with_workers_.end()) {
49 // Notify the browser process that the document has shut down. 49 // Notify the browser process that the document has shut down.
50 render_frame_->Send(new ViewHostMsg_DocumentDetached(document)); 50 render_frame_->Send(new ViewHostMsg_DocumentDetached(document));
51 documents_with_workers_.erase(iter); 51 documents_with_workers_.erase(iter);
52 } 52 }
53 } 53 }
54 54
55 } // namespace content 55 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/shared_worker/shared_worker_repository.h ('k') | content/renderer/shared_worker/websharedworker_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698