diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 23:06:56 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 23:06:56 +0000 |
commit | 581b87eb99683237b52cf727178c0492cf273eeb (patch) | |
tree | 516cf6d1b75dc380fa179d72f95579300d9fdfcb /webkit/glue/glue_util.h | |
parent | c72d7f9099a607ed546404a04a50402a9c3eeeb6 (diff) | |
download | chromium_src-581b87eb99683237b52cf727178c0492cf273eeb.zip chromium_src-581b87eb99683237b52cf727178c0492cf273eeb.tar.gz chromium_src-581b87eb99683237b52cf727178c0492cf273eeb.tar.bz2 |
Allow the browser to send actions back to the render for media element context menus.
Also renamed ContextNodeType per fishd's suggestion.
BUG=15686
TEST=none
Review URL: http://codereview.chromium.org/155954
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21466 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/glue_util.h')
-rw-r--r-- | webkit/glue/glue_util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/webkit/glue/glue_util.h b/webkit/glue/glue_util.h index beafe125..4163f29 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>&); |