| Index: chrome/browser/renderer_host/resource_message_filter.h
|
| ===================================================================
|
| --- chrome/browser/renderer_host/resource_message_filter.h (revision 11493)
|
| +++ chrome/browser/renderer_host/resource_message_filter.h (working copy)
|
| @@ -68,12 +68,13 @@
|
| AudioRendererHost* audio_renderer_host,
|
| PluginService* plugin_service,
|
| printing::PrintJobManager* print_job_manager,
|
| - int render_process_host_id,
|
| Profile* profile,
|
| RenderWidgetHelper* render_widget_helper,
|
| SpellChecker* spellchecker);
|
| virtual ~ResourceMessageFilter();
|
|
|
| + void Init(int render_process_id);
|
| +
|
| // IPC::ChannelProxy::MessageFilter methods:
|
| virtual void OnFilterAdded(IPC::Channel* channel);
|
| virtual void OnChannelConnected(int32 peer_pid);
|
| @@ -86,10 +87,6 @@
|
| // Access to the spell checker.
|
| SpellChecker* spellchecker() { return spellchecker_.get(); }
|
|
|
| - int render_process_host_id() const { return render_process_host_id_;}
|
| -
|
| - base::ProcessHandle renderer_handle() const { return render_handle_;}
|
| -
|
| // NotificationObserver implementation.
|
| virtual void Observe(NotificationType type,
|
| const NotificationSource& source,
|
| @@ -239,7 +236,7 @@
|
| // used by the ResourceDispatcherHost to look up the TabContents that
|
| // originated URLRequest. Since the RenderProcessHost can be destroyed
|
| // before this object, we only hold an ID for lookup.
|
| - int render_process_host_id_;
|
| + int render_process_id_;
|
|
|
| // Our spellchecker object.
|
| scoped_refptr<SpellChecker> spellchecker_;
|
|
|