Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1194)

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 2706933003: webapk: Avoid overwriting default CreationParams
Patch Set: rebase 461342 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 b7bc73347e58e8aba19455838a8930685783c3c5..5f8f114ae63abef39f75cd436ba4ac008fb2e7d2 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -111,7 +111,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).
@@ -506,6 +507,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

Powered by Google App Engine
This is Rietveld 408576698