diff options
Diffstat (limited to 'webkit/glue/glue_util.h')
-rw-r--r-- | webkit/glue/glue_util.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/webkit/glue/glue_util.h b/webkit/glue/glue_util.h index 8f02767..46cc74a 100644 --- a/webkit/glue/glue_util.h +++ b/webkit/glue/glue_util.h @@ -15,6 +15,7 @@ class ChromiumDataObject; class CString; class IntPoint; class IntRect; +class IntSize; class KURL; class String; } @@ -25,6 +26,8 @@ class WebDragData; class WebString; class WebURL; struct WebPoint; +struct WebRect; +struct WebSize; } namespace WTF { @@ -85,6 +88,14 @@ WebCore::IntRect ToIntRect(const gfx::Rect& r); WebCore::IntPoint WebPointToIntPoint(const WebKit::WebPoint&); WebKit::WebPoint IntPointToWebPoint(const WebCore::IntPoint&); +// WebRect <-> IntRect +WebCore::IntRect WebRectToIntRect(const WebKit::WebRect&); +WebKit::WebRect IntRectToWebRect(const WebCore::IntRect&); + +// WebSize <-> IntSize +WebCore::IntSize WebSizeToIntSize(const WebKit::WebSize&); +WebKit::WebSize IntSizeToWebSize(const WebCore::IntSize&); + // WebDragData <-> ChromiumDataObject WebKit::WebDragData ChromiumDataObjectToWebDragData( const WTF::PassRefPtr<WebCore::ChromiumDataObject>&); |