Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1038)

Unified Diff: webkit/tools/test_shell/test_webview_delegate.h

Issue 16510: Fixes bug 1925 (context menus for text selections in... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webview_delegate.h ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « webkit/glue/webview_delegate.h ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698