| 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 53db06dc3bdfe0f0520a3257623d0569515ce9ce..c119f714f16723bdadd913ea250cba5830cdf353 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.h
|
| +++ b/content/browser/renderer_host/render_process_host_impl.h
|
| @@ -139,6 +139,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| override;
|
| virtual void NotifyTimezoneChange() override;
|
| virtual ServiceRegistry* GetServiceRegistry() override;
|
| + virtual const base::TimeTicks& GetInitTime() const;
|
|
|
| // IPC::Sender via RenderProcessHost.
|
| virtual bool Send(IPC::Message* msg) override;
|
| @@ -371,6 +372,10 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| // also reset that in the case of process termination.
|
| bool is_initialized_;
|
|
|
| + // The time at which the first call to Init happened and the child renderer
|
| + // process was created.
|
| + base::TimeTicks init_time_;
|
| +
|
| // Used to launch and terminate the process without blocking the UI thread.
|
| scoped_ptr<ChildProcessLauncher> child_process_launcher_;
|
|
|
|
|