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

Unified Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 2864833002: Tapping handle shouldn't select misspelled word (Closed)
Patch Set: Mac test Created 3 years, 7 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
Index: content/browser/renderer_host/render_widget_host_impl.cc
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
index 9919fd04ae2a76e0a65182a47252fc74d41b87d1..dccfd933527ec088f2dced03225bef066c55dc05 100644
--- a/content/browser/renderer_host/render_widget_host_impl.cc
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
@@ -1327,9 +1327,10 @@ void RenderWidgetHostImpl::SetCursor(const WebCursor& cursor) {
view_->UpdateCursor(cursor);
}
-void RenderWidgetHostImpl::ShowContextMenuAtPoint(const gfx::Point& point) {
- Send(new ViewMsg_ShowContextMenu(
- GetRoutingID(), ui::MENU_SOURCE_MOUSE, point));
+void RenderWidgetHostImpl::ShowContextMenuAtPoint(
+ const gfx::Point& point,
+ const ui::MenuSourceType source_type) {
+ Send(new ViewMsg_ShowContextMenu(GetRoutingID(), source_type, point));
}
void RenderWidgetHostImpl::SendCursorVisibilityState(bool is_visible) {

Powered by Google App Engine
This is Rietveld 408576698