| Index: webkit/tools/test_shell/test_webview_delegate.h
|
| ===================================================================
|
| --- webkit/tools/test_shell/test_webview_delegate.h (revision 8273)
|
| +++ webkit/tools/test_shell/test_webview_delegate.h (working copy)
|
| @@ -40,15 +40,15 @@
|
| public WebViewDelegate {
|
| public:
|
| struct CapturedContextMenuEvent {
|
| - CapturedContextMenuEvent(ContextNode::Type in_type,
|
| + CapturedContextMenuEvent(ContextNode in_node,
|
| int in_x,
|
| int in_y)
|
| - : type(in_type),
|
| + : node(in_node),
|
| x(in_x),
|
| y(in_y) {
|
| }
|
|
|
| - ContextNode::Type type;
|
| + ContextNode node;
|
| int x;
|
| int y;
|
| };
|
| @@ -102,7 +102,7 @@
|
| virtual void StartDragging(WebView* webview,
|
| const WebDropData& drop_data);
|
| virtual void ShowContextMenu(WebView* webview,
|
| - ContextNode::Type type,
|
| + ContextNode node,
|
| int x,
|
| int y,
|
| const GURL& link_url,
|
|
|