| Index: content/browser/renderer_host/render_process_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
|
| index 73522cb58019a57e8f626a7ef5c66dcf4b622422..e0561bb1fe07ed72912a960bdf5231d8d0800797 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.h
|
| +++ b/content/browser/renderer_host/render_process_host_impl.h
|
| @@ -17,7 +17,6 @@
|
| #include "content/browser/geolocation/geolocation_dispatcher_host.h"
|
| #include "content/browser/power_monitor_message_broadcaster.h"
|
| #include "content/common/content_export.h"
|
| -#include "content/public/browser/global_request_id.h"
|
| #include "content/public/browser/gpu_data_manager_observer.h"
|
| #include "content/public/browser/render_process_host.h"
|
| #include "ipc/ipc_channel_proxy.h"
|
| @@ -125,6 +124,8 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| virtual void EnableAecDump(const base::FilePath& file) OVERRIDE;
|
| virtual void DisableAecDump() OVERRIDE;
|
| #endif
|
| + virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id)
|
| + OVERRIDE;
|
|
|
| // IPC::Sender via RenderProcessHost.
|
| virtual bool Send(IPC::Message* msg) OVERRIDE;
|
| @@ -139,10 +140,6 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
|
|
| scoped_refptr<AudioRendererHost> audio_renderer_host() const;
|
|
|
| - // Tells the ResourceDispatcherHost to resume a deferred navigation without
|
| - // transferring it to a new renderer process.
|
| - void ResumeDeferredNavigation(const GlobalRequestID& request_id);
|
| -
|
| // Call this function when it is evident that the child process is actively
|
| // performing some operation, for example if we just received an IPC message.
|
| void mark_child_process_activity_time() {
|
|
|