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

Unified Diff: core/dom/Clipboard.idl

Issue 126143003: Update IDL to Chrome 32 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Add new files Created 6 years, 11 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 | « core/dom/ChildNode.idl ('k') | core/dom/CompositionEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/Clipboard.idl
diff --git a/core/dom/Clipboard.idl b/core/dom/Clipboard.idl
index 82453c70fd70ce4703d51f9b064002b22042b95b..695f70d48666d0b6be10e489f134f66b75975dde 100644
--- a/core/dom/Clipboard.idl
+++ b/core/dom/Clipboard.idl
@@ -30,13 +30,13 @@
] interface Clipboard {
[TreatReturnedNullStringAs=Undefined] attribute DOMString dropEffect;
[TreatReturnedNullStringAs=Undefined] attribute DOMString effectAllowed;
- [CustomGetter] readonly attribute Array types;
+ readonly attribute DOMString[] types;
readonly attribute FileList files;
- [Custom, RaisesException] void clearData(optional DOMString type);
+ void clearData(optional DOMString type);
DOMString getData(DOMString type);
boolean setData(DOMString type, DOMString data);
- [Custom, RaisesException] void setDragImage(HTMLImageElement image, long x, long y);
+ [RaisesException] void setDragImage(Element image, long x, long y);
readonly attribute DataTransferItemList items;
};
« no previous file with comments | « core/dom/ChildNode.idl ('k') | core/dom/CompositionEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698