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

Unified Diff: content/browser/renderer_host/input/touch_emulator_client.h

Issue 2785853002: Selection Action mode triggered like a context menu (Closed)
Patch Set: Fixing rebase bug Created 3 years, 8 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/input/touch_emulator_client.h
diff --git a/content/browser/renderer_host/input/touch_emulator_client.h b/content/browser/renderer_host/input/touch_emulator_client.h
index 82ab49ea1451686a33303df19aefdd4edf257c45..1652a1de2664399857845c0587f16e4c806765f3 100644
--- a/content/browser/renderer_host/input/touch_emulator_client.h
+++ b/content/browser/renderer_host/input/touch_emulator_client.h
@@ -21,7 +21,8 @@ class CONTENT_EXPORT TouchEmulatorClient {
const blink::WebGestureEvent& event) = 0;
virtual void ForwardEmulatedTouchEvent(const blink::WebTouchEvent& event) = 0;
virtual void SetCursor(const WebCursor& cursor) = 0;
- virtual void ShowContextMenuAtPoint(const gfx::Point& point) = 0;
+ virtual void ShowContextMenuAtPoint(const gfx::Point& point,
+ bool from_touch = false) = 0;
boliu 2017/04/21 21:20:18 default arg on virtual function banned by stylegui
aelias_OOO_until_Jul13 2017/04/21 21:42:19 Default arguments are disallowed by Chromium style
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698