| Index: content/renderer/render_widget.h
|
| diff --git a/content/renderer/render_widget.h b/content/renderer/render_widget.h
|
| index ef49c15e580d865d2be85a1aaed355b671470360..d0c263e405a80a89be59af2208f8c757938e2488 100644
|
| --- a/content/renderer/render_widget.h
|
| +++ b/content/renderer/render_widget.h
|
| @@ -77,8 +77,7 @@ 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,
|
| - const WebKit::WebScreenInfo& screen_info);
|
| + WebKit::WebPopupType popup_type);
|
|
|
| // Creates a WebWidget based on the popup type.
|
| static WebKit::WebWidget* CreateWebWidget(RenderWidget* render_widget);
|
| @@ -167,7 +166,6 @@ class CONTENT_EXPORT RenderWidget
|
| };
|
|
|
| RenderWidget(WebKit::WebPopupType popup_type,
|
| - const WebKit::WebScreenInfo& screen_info,
|
| bool swapped_out);
|
| virtual ~RenderWidget();
|
|
|
| @@ -517,9 +515,6 @@ 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_;
|
|
|
|
|