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

Unified Diff: chrome/renderer/render_view.cc

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 | « chrome/renderer/render_view.h ('k') | webkit/glue/context_menu_client_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_view.cc
===================================================================
--- chrome/renderer/render_view.cc (revision 8273)
+++ chrome/renderer/render_view.cc (working copy)
@@ -1955,7 +1955,7 @@
}
void RenderView::ShowContextMenu(WebView* webview,
- ContextNode::Type type,
+ ContextNode node,
int x,
int y,
const GURL& link_url,
@@ -1967,7 +1967,7 @@
int edit_flags,
const std::string& security_info) {
ViewHostMsg_ContextMenu_Params params;
- params.type = type;
+ params.node = node;
params.x = x;
params.y = y;
params.image_url = image_url;
« no previous file with comments | « chrome/renderer/render_view.h ('k') | webkit/glue/context_menu_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698