| 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 a0e8d8a70d3754cab16206f905e10bd48e5741dd..64b7154fadc804dd33237fb0732d279555d0f3a7 100644
|
| --- a/content/public/browser/render_widget_host.h
|
| +++ b/content/public/browser/render_widget_host.h
|
| @@ -28,6 +28,10 @@ namespace gfx {
|
| class Rect;
|
| }
|
|
|
| +namespace WebKit {
|
| +struct WebScreenInfo;
|
| +}
|
| +
|
| namespace content {
|
|
|
| class RenderProcessHost;
|
| @@ -273,6 +277,9 @@ class CONTENT_EXPORT RenderWidgetHost : public IPC::Sender {
|
| // Remove a keyboard listener.
|
| virtual void RemoveKeyboardListener(KeyboardListener* listener) = 0;
|
|
|
| + // Get the screen info corresponding to this render widget.
|
| + virtual void GetWebScreenInfo(WebKit::WebScreenInfo* result) = 0;
|
| +
|
| protected:
|
| friend class RenderWidgetHostImpl;
|
|
|
|
|