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

Unified Diff: Source/core/clipboard/DataTransfer.idl

Issue 339533002: setData() of DataTransfer has a void return type (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed unnecessary argument. Created 6 years, 6 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 | « Source/core/clipboard/DataObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/clipboard/DataTransfer.idl
diff --git a/Source/core/clipboard/DataTransfer.idl b/Source/core/clipboard/DataTransfer.idl
index 497bfdf2c581b3a509cc9d832259e75b869ae45e..a09eb42367fcdde2e4288974b58bda7f29243c98 100644
--- a/Source/core/clipboard/DataTransfer.idl
+++ b/Source/core/clipboard/DataTransfer.idl
@@ -37,7 +37,7 @@
void clearData(optional DOMString type);
DOMString getData(DOMString type);
- boolean setData(DOMString type, DOMString data);
+ void setData(DOMString type, DOMString data);
[RaisesException] void setDragImage(Element image, long x, long y);
readonly attribute DataTransferItemList items;
« no previous file with comments | « Source/core/clipboard/DataObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698