Index: content/browser/renderer_host/render_view_host_impl.cc |
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc |
index 85052d5873a87b199c40f3085e1378dddbd89acc..fc7a6d4c67a0f4a6b010f0401af0392526f4d224 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.cc |
+++ b/content/browser/renderer_host/render_view_host_impl.cc |
@@ -1004,6 +1004,8 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) { |
IPC_MESSAGE_HANDLER(ViewHostMsg_SelectionRootBoundsChanged, |
OnSelectionRootBoundsChanged) |
#endif |
+ IPC_MESSAGE_HANDLER(ViewHostMsg_DidCreateDocument, |
+ OnDidCreateDocument) |
IPC_MESSAGE_HANDLER(ViewHostMsg_DidZoomURL, OnDidZoomURL) |
#if defined(OS_MACOSX) || defined(OS_ANDROID) |
IPC_MESSAGE_HANDLER(ViewHostMsg_ShowPopup, OnShowPopup) |
@@ -1181,8 +1183,10 @@ void RenderViewHostImpl::OnRequestMove(const gfx::Rect& pos) { |
Send(new ViewMsg_Move_ACK(GetRoutingID())); |
} |
-void RenderViewHostImpl::OnDocumentAvailableInMainFrame() { |
+void RenderViewHostImpl::OnDocumentAvailableInMainFrame( |
+ bool uses_temporary_zoom_level) { |
delegate_->DocumentAvailableInMainFrame(this); |
+ OnDidCreateDocument(uses_temporary_zoom_level); |
} |
void RenderViewHostImpl::OnToggleFullscreen(bool enter_fullscreen) { |
@@ -1590,18 +1594,23 @@ void RenderViewHostImpl::OnAccessibilityLocationChanges( |
} |
} |
+void RenderViewHostImpl::OnDidCreateDocument( |
+ bool uses_temporary_zoom_level) { |
+ HostZoomMapImpl* host_zoom_map = static_cast<HostZoomMapImpl*>( |
+ HostZoomMap::GetForBrowserContext(GetProcess()->GetBrowserContext())); |
+ host_zoom_map->SetUsesTemporaryZoomLevel( |
+ GetProcess()->GetID(), GetRoutingID(), uses_temporary_zoom_level); |
+} |
+ |
void RenderViewHostImpl::OnDidZoomURL(double zoom_level, |
- bool remember, |
const GURL& url) { |
HostZoomMapImpl* host_zoom_map = static_cast<HostZoomMapImpl*>( |
HostZoomMap::GetForBrowserContext(GetProcess()->GetBrowserContext())); |
- if (remember) { |
- host_zoom_map-> |
- SetZoomLevelForHost(net::GetHostOrSpecFromURL(url), zoom_level); |
- } else { |
- host_zoom_map->SetTemporaryZoomLevel( |
- GetProcess()->GetID(), GetRoutingID(), zoom_level); |
- } |
+ |
+ host_zoom_map->SetZoomLevelForView(GetProcess()->GetID(), |
+ GetRoutingID(), |
+ zoom_level, |
+ net::GetHostOrSpecFromURL(url)); |
} |
void RenderViewHostImpl::OnRunFileChooser(const FileChooserParams& params) { |