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

Side by Side Diff: content/browser/shared_worker/shared_worker_host.h

Issue 196503005: Make DevTools support for the embedded SharedWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated kinuko's comment Created 6 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_ 5 #ifndef CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_
6 #define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_ 6 #define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 const base::string16& name, 64 const base::string16& name,
65 bool* result); 65 bool* result);
66 66
67 // Terminates the given worker, i.e. based on a UI action. 67 // Terminates the given worker, i.e. based on a UI action.
68 void TerminateWorker(); 68 void TerminateWorker();
69 69
70 SharedWorkerInstance* instance() { return instance_.get(); } 70 SharedWorkerInstance* instance() { return instance_.get(); }
71 SharedWorkerMessageFilter* container_render_filter() const { 71 SharedWorkerMessageFilter* container_render_filter() const {
72 return container_render_filter_; 72 return container_render_filter_;
73 } 73 }
74 int process_id() const { 74 int process_id() const { return worker_process_id_; }
75 return container_render_filter_->render_process_id();
76 }
77 int worker_route_id() const { return worker_route_id_; } 75 int worker_route_id() const { return worker_route_id_; }
78 76
79 private: 77 private:
80 // Relays |message| to the SharedWorker. Takes care of parsing the message if 78 // Relays |message| to the SharedWorker. Takes care of parsing the message if
81 // it contains a message port and sending it a valid route id. 79 // it contains a message port and sending it a valid route id.
82 void RelayMessage(const IPC::Message& message, 80 void RelayMessage(const IPC::Message& message,
83 SharedWorkerMessageFilter* incoming_filter); 81 SharedWorkerMessageFilter* incoming_filter);
84 82
85 // Return a vector of all the render process/render frame IDs. 83 // Return a vector of all the render process/render frame IDs.
86 std::vector<std::pair<int, int> > GetRenderFrameIDsForWorker(); 84 std::vector<std::pair<int, int> > GetRenderFrameIDsForWorker();
87 85
88 scoped_ptr<SharedWorkerInstance> instance_; 86 scoped_ptr<SharedWorkerInstance> instance_;
89 SharedWorkerMessageFilter* container_render_filter_; 87 SharedWorkerMessageFilter* container_render_filter_;
88 int worker_process_id_;
90 int worker_route_id_; 89 int worker_route_id_;
91 DISALLOW_COPY_AND_ASSIGN(SharedWorkerHost); 90 DISALLOW_COPY_AND_ASSIGN(SharedWorkerHost);
92 }; 91 };
93 } // namespace content 92 } // namespace content
94 93
95 #endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_ 94 #endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698