| 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 a25b0a0613b78d2c01c718baf5884e56274a90a5..8165e36ed20ad7665663b79fdb694cd8ad8312a2 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -991,6 +991,16 @@ void WebContentsImpl::UpdateZoomIfNecessary(const std::string& scheme,
|
| UpdateZoom(level);
|
| }
|
|
|
| +void WebContentsImpl::UpdateDeviceScaleFactor(double device_scale_factor) {
|
| + SendPageMessage(
|
| + new PageMsg_SetDeviceScaleFactor(MSG_ROUTING_NONE, device_scale_factor));
|
| +}
|
| +
|
| +void WebContentsImpl::GetScreenInfo(blink::WebScreenInfo* web_screen_info) {
|
| + if (GetView())
|
| + GetView()->GetScreenInfo(web_screen_info);
|
| +}
|
| +
|
| WebUI* WebContentsImpl::CreateSubframeWebUI(const GURL& url,
|
| const std::string& frame_name) {
|
| DCHECK(!frame_name.empty());
|
|
|