| 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 1eac862663f1a142b3979b4f6218164cfb248d42..95636993cbbbd23e5ad75fb8deea819b22a6fcdd 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.h
|
| +++ b/content/browser/renderer_host/render_process_host_impl.h
|
| @@ -109,7 +109,8 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| public:
|
| RenderProcessHostImpl(BrowserContext* browser_context,
|
| StoragePartitionImpl* storage_partition_impl,
|
| - bool is_for_guests_only);
|
| + bool is_for_guests_only,
|
| + int child_process_param_id);
|
| ~RenderProcessHostImpl() override;
|
|
|
| // RenderProcessHost implementation (public portion).
|
| @@ -499,6 +500,9 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| // The globally-unique identifier for this RPH.
|
| const int id_;
|
|
|
| + // An opaque id used passed to ChildProcessLauncher to launch child processes.
|
| + const int child_process_param_id_;
|
| +
|
| // A secondary ID used by the Service Manager to distinguish different
|
| // incarnations of the same RPH from each other. Unlike |id_| this is not
|
| // globally unique, but it is guaranteed to change every time ProcessDied() is
|
|
|