Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2132)

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 2317563004: Change blink::WebScreenInfo to content::ScreenInfo (Closed)
Patch Set: Fix Windows compile Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 878d780856bd415daa84742e9324d7dde076cd3f..df79088aa084d801e41cbbed7f25ed4c8afd0d16 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -991,9 +991,9 @@ void WebContentsImpl::UpdateDeviceScaleFactor(double device_scale_factor) {
new PageMsg_SetDeviceScaleFactor(MSG_ROUTING_NONE, device_scale_factor));
}
-void WebContentsImpl::GetScreenInfo(blink::WebScreenInfo* web_screen_info) {
+void WebContentsImpl::GetScreenInfo(ScreenInfo* screen_info) {
if (GetView())
- GetView()->GetScreenInfo(web_screen_info);
+ GetView()->GetScreenInfo(screen_info);
}
WebUI* WebContentsImpl::CreateSubframeWebUI(const GURL& url,

Powered by Google App Engine
This is Rietveld 408576698