Index: content/public/browser/site_instance.h |
diff --git a/content/public/browser/site_instance.h b/content/public/browser/site_instance.h |
index 9c9e6633864cdc1b8ab89fe4e860e32086e1ae48..61d593da3e07e357781be7646ba3e7cc62e12301 100644 |
--- a/content/public/browser/site_instance.h |
+++ b/content/public/browser/site_instance.h |
@@ -135,8 +135,11 @@ class CONTENT_EXPORT SiteInstance : public base::RefCounted<SiteInstance> { |
// the same process if they can communicate with other via JavaScript. |
// (e.g., docs.google.com and mail.google.com have DOM access to each other |
// if they both set their document.domain properties to google.com.) |
+ // Note that if the destination is a blank page, we consider that to be part |
+ // of the same web site for the purposes for process assignment. |
static bool IsSameWebSite(content::BrowserContext* browser_context, |
- const GURL& url1, const GURL& url2); |
+ const GURL& src_url, |
+ const GURL& dest_url); |
// Returns the site for the given URL, which includes only the scheme and |
// registered domain. Returns an empty GURL if the URL has no host. |