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

Unified Diff: third_party/WebKit/Source/core/clipboard/DataObject.h

Issue 1723763002: Add WebDragData to blink::WebView::dragtargetDrop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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 | « content/renderer/render_view_impl.cc ('k') | third_party/WebKit/Source/core/clipboard/DataObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/clipboard/DataObject.h
diff --git a/third_party/WebKit/Source/core/clipboard/DataObject.h b/third_party/WebKit/Source/core/clipboard/DataObject.h
index 19133ae5d69c1da7ee91d371487c0531e2cdf7d8..958ca4a951586a15d8eec084dbe4ec650d563134 100644
--- a/third_party/WebKit/Source/core/clipboard/DataObject.h
+++ b/third_party/WebKit/Source/core/clipboard/DataObject.h
@@ -96,6 +96,8 @@ public:
int modifiers() const { return m_modifiers; }
void setModifiers(int modifiers) { m_modifiers = modifiers; }
+ bool canReadContent() const { return m_canReadContent; }
+
DECLARE_TRACE();
WebDragData toWebDragData();
@@ -112,6 +114,8 @@ private:
// State of Shift/Ctrl/Alt/Meta keys and Left/Right/Middle mouse buttons
int m_modifiers;
String m_filesystemId;
+
+ bool m_canReadContent;
dcheng 2016/03/30 08:40:02 This shouldn't be necessary, DataTransfer/DataTran
hush (inactive) 2016/04/06 22:47:51 Yeah. Removed.
};
} // namespace blink
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | third_party/WebKit/Source/core/clipboard/DataObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698