| 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 37cf40e75fcce20b4ffe66656690ef0263069909..d10590db7f545e16f531ea110d6717dbbe1ab064 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.h
|
| +++ b/content/browser/renderer_host/render_process_host_impl.h
|
| @@ -118,6 +118,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| bool Shutdown(int exit_code, bool wait) override;
|
| bool FastShutdownIfPossible() override;
|
| base::ProcessHandle GetHandle() const override;
|
| + bool IsReady() const override;
|
| BrowserContext* GetBrowserContext() const override;
|
| bool InSameStoragePartition(StoragePartition* partition) const override;
|
| int GetID() const override;
|
| @@ -494,6 +495,9 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| IOSurfaceManagerToken io_surface_manager_token_;
|
| #endif
|
|
|
| + bool channel_connected_;
|
| + bool sent_render_process_ready_;
|
| +
|
| base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
|
|
|