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

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

Issue 159471: Merge 21466 - Allow the browser to send actions back to the render for media ... (Closed) Base URL: svn://chrome-svn/chrome/branches/195/src/
Patch Set: Created 11 years, 5 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_impl.cc ('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 21785)
+++ webkit/tools/test_shell/test_webview_delegate.h (working copy)
@@ -45,15 +45,15 @@
public WebViewDelegate {
public:
struct CapturedContextMenuEvent {
- CapturedContextMenuEvent(ContextNode in_node,
+ CapturedContextMenuEvent(ContextNodeType in_node_type,
int in_x,
int in_y)
- : node(in_node),
+ : node_type(in_node_type),
x(in_x),
y(in_y) {
}
- ContextNode node;
+ ContextNodeType node_type;
int x;
int y;
};
@@ -130,7 +130,7 @@
virtual void StartDragging(WebView* webview,
const WebKit::WebDragData& drag_data);
virtual void ShowContextMenu(WebView* webview,
- ContextNode node,
+ ContextNodeType node_type,
int x,
int y,
const GURL& link_url,
Property changes on: webkit\tools\test_shell\test_webview_delegate.h
___________________________________________________________________
Added: svn:mergeinfo
Merged /branches/chrome_webkit_merge_branch/src/webkit/tools/test_shell/test_webview_delegate.h:r3734-4217,4606-5108,5177-5263
Merged /trunk/src/webkit/tools/test_shell/test_webview_delegate.h:r21466
« no previous file with comments | « webkit/glue/webview_impl.cc ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698