Index: content/browser/host_zoom_map_impl.cc |
diff --git a/content/browser/host_zoom_map_impl.cc b/content/browser/host_zoom_map_impl.cc |
index 63a064c5f4110bcd6cc6ae3270648b11c6c5fd30..393c82a9019849fc31502037e51daaa91a7baf37 100644 |
--- a/content/browser/host_zoom_map_impl.cc |
+++ b/content/browser/host_zoom_map_impl.cc |
@@ -163,9 +163,9 @@ void HostZoomMapImpl::Observe( |
case content::NOTIFICATION_RENDER_VIEW_HOST_WILL_CLOSE_RENDER_VIEW: { |
base::AutoLock auto_lock(lock_); |
int render_view_id = |
- content::Source<RenderViewHost>(source)->routing_id(); |
+ content::Source<RenderViewHost>(source)->GetRoutingID(); |
int render_process_id = |
- content::Source<RenderViewHost>(source)->process()->GetID(); |
+ content::Source<RenderViewHost>(source)->GetProcess()->GetID(); |
for (size_t i = 0; i < temporary_zoom_levels_.size(); ++i) { |
if (temporary_zoom_levels_[i].render_process_id == render_process_id && |