Chromium Code Reviews| Index: content/renderer/render_widget.h |
| diff --git a/content/renderer/render_widget.h b/content/renderer/render_widget.h |
| index d1968e0be3fd736e0e32b06c3d903aeeb9b3e060..68f6beab68f2166b65cfab6577317ad800e74cdb 100644 |
| --- a/content/renderer/render_widget.h |
| +++ b/content/renderer/render_widget.h |
| @@ -76,7 +76,8 @@ class CONTENT_EXPORT RenderWidget |
| // Creates a new RenderWidget. The opener_id is the routing ID of the |
| // RenderView that this widget lives inside. |
| static RenderWidget* Create(int32 opener_id, |
| - WebKit::WebPopupType popup_type); |
| + WebKit::WebPopupType popup_type, |
| + const WebKit::WebScreenInfo& screen_info); |
| // Creates a WebWidget based on the popup type. |
| static WebKit::WebWidget* CreateWebWidget(RenderWidget* render_widget); |
| @@ -157,7 +158,8 @@ class CONTENT_EXPORT RenderWidget |
| // For unit tests. |
| friend class RenderWidgetTest; |
| - explicit RenderWidget(WebKit::WebPopupType popup_type); |
| + explicit RenderWidget(WebKit::WebPopupType popup_type, |
|
jam
2012/02/29 23:41:17
nit: no need for explicit
Fady Samuel
2012/03/01 00:52:25
True, thanks.
|
| + const WebKit::WebScreenInfo& screen_info); |
| virtual ~RenderWidget(); |
| // Initializes this view with the given opener. CompleteInit must be called |
| @@ -496,6 +498,9 @@ class CONTENT_EXPORT RenderWidget |
| // case NULL is added to the queue. |
| std::deque<ViewHostMsg_UpdateRect*> updates_pending_swap_; |
| + // Properties of the screen hosting this RenderWidget instance. |
| + WebKit::WebScreenInfo screen_info_; |
| + |
| // Set to true if we should invert all pixels. |
| bool invert_; |