Chromium Code Reviews| Index: content/public/browser/render_process_host.h |
| diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h |
| index c1b5c47e1d2fd5b38f90dab5febc685e76c0a7a9..5bc584286a4a23e9e948bc98e773c0405c22c421 100644 |
| --- a/content/public/browser/render_process_host.h |
| +++ b/content/public/browser/render_process_host.h |
| @@ -229,6 +229,13 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender, |
| // Returns the ServiceRegistry for this process. |
| virtual ServiceRegistry* GetServiceRegistry() = 0; |
| + // PlzNavigate |
| + // Returns the time the first call to Init completed successfully (after a new |
| + // renderer process was created); further calls to Init won't change this |
| + // value. |
| + // Note: Will disappear after PlzNavitate is completed. |
|
nasko
2014/10/20 18:03:39
nit: I'd say let's add "Do not use." to the commen
carlosk
2014/10/20 19:42:55
Done.
|
| + virtual const base::TimeTicks& init_time() const = 0; |
|
nasko
2014/10/20 18:03:39
Public API methods should be CamelCased, not hacke
carlosk
2014/10/20 19:42:55
Done.
|
| + |
| // Static management functions ----------------------------------------------- |
| // Flag to run the renderer in process. This is primarily |