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

Unified Diff: content/browser/renderer_host/render_widget_host_delegate.h

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/renderer_host/render_widget_host_delegate.h
diff --git a/content/browser/renderer_host/render_widget_host_delegate.h b/content/browser/renderer_host/render_widget_host_delegate.h
index 0ac9aa600af0e54319b2a1157eea36e0a4ccf5fd..2f3a2b37023ed95cd7ad8f894bbefef6d064fd76 100644
--- a/content/browser/renderer_host/render_widget_host_delegate.h
+++ b/content/browser/renderer_host/render_widget_host_delegate.h
@@ -18,7 +18,6 @@
namespace blink {
class WebMouseWheelEvent;
class WebGestureEvent;
-struct WebScreenInfo;
}
namespace gfx {
@@ -33,6 +32,7 @@ class BrowserAccessibilityManager;
class RenderWidgetHostImpl;
class RenderWidgetHostInputEventRouter;
class TextInputManager;
+struct ScreenInfo;
struct NativeWebKeyboardEvent;
//
@@ -66,7 +66,7 @@ class CONTENT_EXPORT RenderWidgetHostDelegate {
virtual void UpdateDeviceScaleFactor(double device_scale_factor) {}
// Retrieve screen information.
- virtual void GetScreenInfo(blink::WebScreenInfo* web_screen_info);
+ virtual void GetScreenInfo(ScreenInfo* web_screen_info);
// Callback to give the browser a chance to handle the specified keyboard
// event before sending it to the renderer.

Powered by Google App Engine
This is Rietveld 408576698