| Index: webkit/glue/glue_util.h
|
| diff --git a/webkit/glue/glue_util.h b/webkit/glue/glue_util.h
|
| index beafe125bd2856ae9d849b4af2eb3fed3eb5f28a..4163f29cdd24732a386c4c4524454177a5171931 100644
|
| --- a/webkit/glue/glue_util.h
|
| +++ b/webkit/glue/glue_util.h
|
| @@ -20,6 +20,7 @@ class IntPoint;
|
| class IntRect;
|
| class IntSize;
|
| class KURL;
|
| +class Node;
|
| class ResourceError;
|
| class ResourceResponse;
|
| class SharedBuffer;
|
| @@ -33,6 +34,7 @@ class WebData;
|
| class WebDragData;
|
| class WebForm;
|
| class WebHistoryItem;
|
| +class WebNode;
|
| class WebString;
|
| class WebURL;
|
| class WebURLRequest;
|
| @@ -120,6 +122,10 @@ WebKit::WebSize IntSizeToWebSize(const WebCore::IntSize&);
|
| // WebCursorInfo <- Cursor
|
| WebKit::WebCursorInfo CursorToWebCursorInfo(const WebCore::Cursor&);
|
|
|
| +// WebNode <-> Node
|
| +WebKit::WebNode NodeToWebNode(const WTF::PassRefPtr<WebCore::Node>&);
|
| +WTF::PassRefPtr<WebCore::Node> WebNodeToNode(const WebKit::WebNode&);
|
| +
|
| // WebDragData <-> ChromiumDataObject
|
| WebKit::WebDragData ChromiumDataObjectToWebDragData(
|
| const WTF::PassRefPtr<WebCore::ChromiumDataObject>&);
|
|
|