| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index c37835e255b0f558b1acee1268bc5df264c95570..0f0b7bc88a4e6a16bcc2edeaa5aba9c2ce2e3846 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -115,6 +115,7 @@
|
| #include "content/public/common/web_preferences.h"
|
| #include "mojo/common/url_type_converters.h"
|
| #include "mojo/converters/geometry/geometry_type_converters.h"
|
| +#include "net/base/url_util.h"
|
| #include "net/http/http_cache.h"
|
| #include "net/http/http_transaction_factory.h"
|
| #include "net/url_request/url_request_context.h"
|
| @@ -910,6 +911,39 @@ void WebContentsImpl::RequestAXTreeSnapshot(AXTreeSnapshotCallback callback) {
|
| }
|
| }
|
|
|
| +void WebContentsImpl::SetTemporaryZoomLevel(double level,
|
| + bool temporary_zoom_enabled) {
|
| + SendPageMessage(new PageMsg_SetZoomLevel(
|
| + MSG_ROUTING_NONE,
|
| + temporary_zoom_enabled ? PageMsg_SetZoomLevel_Command::SET_TEMPORARY
|
| + : PageMsg_SetZoomLevel_Command::CLEAR_TEMPORARY,
|
| + level));
|
| +}
|
| +
|
| +void WebContentsImpl::UpdateZoom(double level) {
|
| + // Individual frames may still ignore the new zoom level if their RenderView
|
| + // contains a plugin document or if it uses a temporary zoom level.
|
| + SendPageMessage(new PageMsg_SetZoomLevel(
|
| + MSG_ROUTING_NONE,
|
| + PageMsg_SetZoomLevel_Command::USE_CURRENT_TEMPORARY_MODE, level));
|
| +}
|
| +
|
| +void WebContentsImpl::UpdateZoomIfNecessary(const std::string& scheme,
|
| + const std::string& host,
|
| + double level) {
|
| + NavigationEntry* entry = GetController().GetLastCommittedEntry();
|
| + if (!entry)
|
| + return;
|
| +
|
| + GURL url = HostZoomMap::GetURLFromEntry(entry);
|
| + if (host != net::GetHostOrSpecFromURL(url) ||
|
| + (!scheme.empty() && !url.SchemeIs(scheme))) {
|
| + return;
|
| + }
|
| +
|
| + UpdateZoom(level);
|
| +}
|
| +
|
| WebUI* WebContentsImpl::CreateSubframeWebUI(const GURL& url,
|
| const std::string& frame_name) {
|
| DCHECK(!frame_name.empty());
|
| @@ -3999,6 +4033,16 @@ WebContents* WebContentsImpl::GetAsWebContents() {
|
| return this;
|
| }
|
|
|
| +double WebContentsImpl::GetPendingPageZoomLevel() {
|
| + NavigationEntry* pending_entry = GetController().GetPendingEntry();
|
| + if (!pending_entry)
|
| + return HostZoomMap::GetZoomLevel(this);
|
| +
|
| + GURL url = pending_entry->GetURL();
|
| + return HostZoomMap::GetForWebContents(this)->GetZoomLevelForHostAndScheme(
|
| + url.scheme(), net::GetHostOrSpecFromURL(url));
|
| +}
|
| +
|
| bool WebContentsImpl::IsNeverVisible() {
|
| if (!delegate_)
|
| return false;
|
|
|