| Index: content/browser/worker_host/worker_message_filter.h
|
| ===================================================================
|
| --- content/browser/worker_host/worker_message_filter.h (revision 117096)
|
| +++ content/browser/worker_host/worker_message_filter.h (working copy)
|
| @@ -25,7 +25,6 @@
|
| WorkerMessageFilter(
|
| int render_process_id,
|
| const content::ResourceContext* resource_context,
|
| - ResourceDispatcherHost* resource_dispatcher_host,
|
| const NextRoutingIDCallback& callback);
|
|
|
| // content::BrowserMessageFilter implementation.
|
| @@ -35,9 +34,6 @@
|
|
|
| int GetNextRoutingID();
|
| int render_process_id() const { return render_process_id_; }
|
| - ResourceDispatcherHost* resource_dispatcher_host() const {
|
| - return resource_dispatcher_host_;
|
| - }
|
|
|
| private:
|
| virtual ~WorkerMessageFilter();
|
| @@ -55,7 +51,6 @@
|
|
|
| int render_process_id_;
|
| const content::ResourceContext* const resource_context_;
|
| - ResourceDispatcherHost* resource_dispatcher_host_;
|
|
|
| // This is guaranteed to be valid until OnChannelClosing is closed, and it's
|
| // not used after.
|
|
|