| Index: webkit/glue/glue_util.cc
|
| diff --git a/webkit/glue/glue_util.cc b/webkit/glue/glue_util.cc
|
| index f12be0bf6edb0af26d7fe163a051f831e3760611..8b9f1faaccbbc7394addb8935d444f543f7f61d9 100644
|
| --- a/webkit/glue/glue_util.cc
|
| +++ b/webkit/glue/glue_util.cc
|
| @@ -22,6 +22,7 @@
|
| #include "IntPoint.h"
|
| #include "IntRect.h"
|
| #include "KURL.h"
|
| +#include "Node.h"
|
| #include "PlatformString.h"
|
| #include "ResourceError.h"
|
|
|
| @@ -36,6 +37,7 @@
|
| #include "webkit/api/public/WebDragData.h"
|
| #include "webkit/api/public/WebForm.h"
|
| #include "webkit/api/public/WebHistoryItem.h"
|
| +#include "webkit/api/public/WebNode.h"
|
| #include "webkit/api/public/WebPoint.h"
|
| #include "webkit/api/public/WebRect.h"
|
| #include "webkit/api/public/WebSize.h"
|
| @@ -261,6 +263,14 @@ WTF::PassRefPtr<WebCore::HTMLFormElement> WebFormToHTMLFormElement(
|
| return form;
|
| }
|
|
|
| +// WebNode conversions ---------------------------------------------------------
|
| +WebKit::WebNode NodeToWebNode(const WTF::PassRefPtr<WebCore::Node>& node) {
|
| + return node;
|
| +}
|
| +WTF::PassRefPtr<WebCore::Node> WebNodeToNode(const WebKit::WebNode& node) {
|
| + return node;
|
| +}
|
| +
|
| // WebHistoryItem conversions --------------------------------------------------
|
|
|
| WebKit::WebHistoryItem HistoryItemToWebHistoryItem(
|
|
|