| Index: content/browser/shared_worker/shared_worker_host.h
|
| diff --git a/content/browser/shared_worker/shared_worker_host.h b/content/browser/shared_worker/shared_worker_host.h
|
| index 4292d74820e279337b2075c488a9974572ba9ece..01b1a1bb1e4973eee849bcd64130f5bbbe8b1da0 100644
|
| --- a/content/browser/shared_worker/shared_worker_host.h
|
| +++ b/content/browser/shared_worker/shared_worker_host.h
|
| @@ -71,9 +71,7 @@ class SharedWorkerHost {
|
| SharedWorkerMessageFilter* container_render_filter() const {
|
| return container_render_filter_;
|
| }
|
| - int process_id() const {
|
| - return container_render_filter_->render_process_id();
|
| - }
|
| + int process_id() const { return worker_process_id_; }
|
| int worker_route_id() const { return worker_route_id_; }
|
|
|
| private:
|
| @@ -87,6 +85,7 @@ class SharedWorkerHost {
|
|
|
| scoped_ptr<SharedWorkerInstance> instance_;
|
| SharedWorkerMessageFilter* container_render_filter_;
|
| + int worker_process_id_;
|
| int worker_route_id_;
|
| DISALLOW_COPY_AND_ASSIGN(SharedWorkerHost);
|
| };
|
|
|