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

Unified Diff: content/public/browser/render_view_host.h

Issue 1728193002: Support dragging texts into Android WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 4 years, 10 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/public/browser/render_view_host.h
diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h
index 1a4d1646d708a80fc6c84e0c3b7e821212ca1f98..5ed35ad303786a11b15f070706d36b2963d85d1e 100644
--- a/content/public/browser/render_view_host.h
+++ b/content/public/browser/render_view_host.h
@@ -145,6 +145,12 @@ class CONTENT_EXPORT RenderViewHost : public IPC::Sender {
virtual void DragTargetDrop(const gfx::Point& client_pt,
const gfx::Point& screen_pt,
int key_modifiers) = 0;
+#if defined(OS_ANDROID)
+ virtual void DragTargetDropWithData(const DropData& drop_data,
aelias_OOO_until_Jul13 2016/02/25 20:58:00 Why do you need to add a new platform-specific met
hush (inactive) 2016/02/27 01:46:13 See CL: https://codereview.chromium.org/1723763002
aelias_OOO_until_Jul13 2016/02/27 01:54:41 It doesn't seem great that we're passing in fake/e
hush (inactive) 2016/02/29 18:27:41 I can do that. But this would bloat this CL signif
hush (inactive) 2016/03/01 18:54:28 Hi Alex, I did some investigation yesterday and i
+ const gfx::Point& client_pt,
+ const gfx::Point& screen_pt,
+ int key_modifiers) = 0;
+#endif
// Instructs the RenderView to automatically resize and send back updates
// for the new size.

Powered by Google App Engine
This is Rietveld 408576698