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

Unified Diff: content/public/browser/render_widget_host.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/public/browser/render_widget_host.h
diff --git a/content/public/browser/render_widget_host.h b/content/public/browser/render_widget_host.h
index f5b81c139555ee2e1431f350e58da865a624cd53..508c4fbf0d00b5a1777f9889e57939bb87af3195 100644
--- a/content/public/browser/render_widget_host.h
+++ b/content/public/browser/render_widget_host.h
@@ -25,7 +25,6 @@ class Rect;
namespace blink {
class WebMouseEvent;
-struct WebScreenInfo;
}
namespace content {
@@ -34,6 +33,7 @@ class RenderProcessHost;
class RenderWidgetHostImpl;
class RenderWidgetHostIterator;
class RenderWidgetHostView;
+struct ScreenInfo;
// A RenderWidgetHost manages the browser side of a browser<->renderer
// HWND connection. The HWND lives in the browser process, and
@@ -257,7 +257,7 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Sender {
virtual void RemoveInputEventObserver(InputEventObserver* observer) = 0;
// Get the screen info corresponding to this render widget.
- virtual void GetWebScreenInfo(blink::WebScreenInfo* result) = 0;
+ virtual void GetScreenInfo(ScreenInfo* result) = 0;
// Sends a compositor proto to the render widget.
virtual void HandleCompositorProto(const std::vector<uint8_t>& proto) = 0;

Powered by Google App Engine
This is Rietveld 408576698