| Index: content/browser/browsing_instance.cc
|
| diff --git a/content/browser/browsing_instance.cc b/content/browser/browsing_instance.cc
|
| index e3efa829c5ec2a6bf0be5983b0dd5abc6d57c489..1759fc0917f5c3aab09a9051254d2c2acdc24bd5 100644
|
| --- a/content/browser/browsing_instance.cc
|
| +++ b/content/browser/browsing_instance.cc
|
| @@ -57,7 +57,7 @@ BrowsingInstance::SiteInstanceMap* BrowsingInstance::GetSiteInstanceMap(
|
| // Otherwise, process-per-site is in use, at least for this URL. Look up the
|
| // global map for this profile, creating an entry if necessary.
|
| ProfileId runtime_id = profile ? profile->GetRuntimeId()
|
| - : Profile::InvalidProfileId;
|
| + : Profile::kInvalidProfileId;
|
| return &profile_site_instance_map_[runtime_id];
|
| }
|
|
|
| @@ -124,7 +124,7 @@ void BrowsingInstance::UnregisterSiteInstance(SiteInstance* site_instance) {
|
| if (!RemoveSiteInstanceFromMap(&site_instance_map_, site, site_instance)) {
|
| // Wasn't in our local map, so look in the static per-profile map.
|
| ProfileId runtime_id = profile_ ? profile_->GetRuntimeId()
|
| - : Profile::InvalidProfileId;
|
| + : Profile::kInvalidProfileId;
|
| RemoveSiteInstanceFromMap(
|
| &profile_site_instance_map_[runtime_id], site, site_instance);
|
| }
|
|
|