| Index: webkit/glue/webwidget_delegate.h | 
| =================================================================== | 
| --- webkit/glue/webwidget_delegate.h	(revision 12916) | 
| +++ webkit/glue/webwidget_delegate.h	(working copy) | 
| @@ -13,10 +13,14 @@ | 
| #include "webkit/glue/window_open_disposition.h" | 
|  | 
| namespace gfx { | 
| -  class Point; | 
| -  class Rect; | 
| +class Point; | 
| +class Rect; | 
| } | 
|  | 
| +namespace WebKit { | 
| +struct WebScreenInfo; | 
| +} | 
| + | 
| class WebWidget; | 
| class WebCursor; | 
| struct WebPluginGeometry; | 
| @@ -121,8 +125,11 @@ | 
| virtual void Release() = 0; | 
|  | 
| // Returns true if the widget is in a background tab. | 
| -  virtual bool IsHidden() = 0; | 
| +  virtual bool IsHidden(WebWidget* webwidget) = 0; | 
|  | 
| +  // Returns information about the screen associated with this widget. | 
| +  virtual WebKit::WebScreenInfo GetScreenInfo(WebWidget* webwidget) = 0; | 
| + | 
| WebWidgetDelegate() { } | 
| virtual ~WebWidgetDelegate() { } | 
|  | 
|  |