Chromium Code Reviews| 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 96900941e917bf964a13293930b129bb36f9ab78..ea90d641f2b7b908b5746233bceaf6b4c33bb6f7 100644 |
| --- a/content/browser/renderer_host/render_process_host_impl.h |
| +++ b/content/browser/renderer_host/render_process_host_impl.h |
| @@ -114,9 +114,11 @@ class CONTENT_EXPORT RenderProcessHostImpl |
| public NON_EXPORTED_BASE(mojom::AssociatedInterfaceProvider), |
| public NON_EXPORTED_BASE(mojom::RendererHost) { |
| public: |
| - RenderProcessHostImpl(BrowserContext* browser_context, |
| - StoragePartitionImpl* storage_partition_impl, |
| - bool is_for_guests_only); |
| + static RenderProcessHost* CreateRenderProcessHost( |
| + BrowserContext* browser_context, |
| + StoragePartitionImpl* storage_partition_impl, |
| + bool is_for_guests_only); |
| + |
| ~RenderProcessHostImpl() override; |
| // RenderProcessHost implementation (public portion). |
| @@ -335,6 +337,10 @@ class CONTENT_EXPORT RenderProcessHostImpl |
| RenderProcessHost* render_process_host, |
| const GURL& site_url); |
| + static void OnStoragePartitionShutdown(StoragePartition* partition); |
|
Charlie Reis
2017/06/25 23:48:28
Please add comments to these.
|
| + |
| + static RenderProcessHost* GetSpareRenderProcessHostForTesting(); |
| + |
| protected: |
| // A proxy for our IPC::Channel that lives on the IO thread. |
| std::unique_ptr<IPC::ChannelProxy> channel_; |
| @@ -361,6 +367,12 @@ class CONTENT_EXPORT RenderProcessHostImpl |
| class ConnectionFilterController; |
| class ConnectionFilterImpl; |
| + // Use CreateRenderProcessHost() instead of calling this constructor |
| + // directly. |
| + RenderProcessHostImpl(BrowserContext* browser_context, |
| + StoragePartitionImpl* storage_partition_impl, |
| + bool is_for_guests_only); |
| + |
| // Initializes a new IPC::ChannelProxy in |channel_|, which will be connected |
| // to the next child process launched for this host, if any. |
| void InitializeChannelProxy(); |