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

Unified Diff: content/browser/browser_context.cc

Issue 11000027: Rename GetSite in SiteInstance to GetSiteURL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/browser_context.cc
diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc
index b2aadfe72d4c1d32d0080691931ac098c291bbf6..58e5df8fd0552217a71a2bea906ad0b7f0b7b117 100644
--- a/content/browser/browser_context.cc
+++ b/content/browser/browser_context.cc
@@ -116,7 +116,8 @@ StoragePartition* BrowserContext::GetStoragePartition(
// this conditional and require that |site_instance| is non-NULL.
if (site_instance) {
partition_id = GetContentClient()->browser()->
- GetStoragePartitionIdForSite(browser_context, site_instance->GetSite());
+ GetStoragePartitionIdForSite(browser_context,
+ site_instance->GetSiteURL());
}
return GetStoragePartitionByPartitionId(browser_context, partition_id);

Powered by Google App Engine
This is Rietveld 408576698