Index: chrome/browser/profiles/off_the_record_profile_impl.cc |
diff --git a/chrome/browser/profiles/off_the_record_profile_impl.cc b/chrome/browser/profiles/off_the_record_profile_impl.cc |
index af37bd22a94f95daf048e165f2358bc5636d177b..3e4f1ef1b5e6112093bd5ee6072065c1adc2a460 100644 |
--- a/chrome/browser/profiles/off_the_record_profile_impl.cc |
+++ b/chrome/browser/profiles/off_the_record_profile_impl.cc |
@@ -439,8 +439,8 @@ void OffTheRecordProfileImpl::Observe( |
HostZoomMap* host_zoom_map = HostZoomMap::GetForBrowserContext(this); |
HostZoomMap* parent_host_zoom_map = |
HostZoomMap::GetForBrowserContext(profile_); |
- double level = parent_host_zoom_map->GetZoomLevel(host); |
- host_zoom_map->SetZoomLevel(host, level); |
+ double level = parent_host_zoom_map->GetZoomLevel(std::string(), host); |
+ host_zoom_map->SetZoomLevel(std::string(), host, level); |
} |
} |
} |