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

Unified Diff: content/browser/site_instance_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
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/browser/site_instance_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/site_instance_impl.h
diff --git a/content/browser/site_instance_impl.h b/content/browser/site_instance_impl.h
index fc2ad85bd30738cf2167cc2bd8735aeebe7ced99..6aeffb6e51eb085284345bf8a7fe77d552750663 100644
--- a/content/browser/site_instance_impl.h
+++ b/content/browser/site_instance_impl.h
@@ -33,11 +33,14 @@ class CONTENT_EXPORT SiteInstanceImpl final : public SiteInstance,
virtual void RenderProcessGone(SiteInstanceImpl* site_instance) = 0;
};
- static scoped_refptr<SiteInstanceImpl> Create(
- BrowserContext* browser_context);
+ // |child_process_param_id| is an opaque id passed to ChildProcessLauncher.
+ // All frames in this site instance will inhert the same id.
+ static scoped_refptr<SiteInstanceImpl> Create(BrowserContext* browser_context,
+ int child_process_param_id);
static scoped_refptr<SiteInstanceImpl> CreateForURL(
BrowserContext* browser_context,
- const GURL& url);
+ const GURL& url,
+ int child_process_param_id);
// SiteInstance interface overrides.
int32_t GetId() override;
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/browser/site_instance_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698