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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 292963002: SDK rebuild (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/idl/dart/dart.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 9cf3a84c5e2488320a9f560bc4bc0aa7659d8c3c..da568a6db11c5e6b2e13a3b81891eeadb89a929c 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -6978,7 +6978,7 @@ class DataTransfer extends NativeFieldWrapperClass2 {
@DomName('Clipboard.setDragImage')
@DocsEditable()
- void setDragImage(Element element, int x, int y) => _blink.Native_Clipboard_setDragImage_Callback(this, element, x, y);
+ void setDragImage(Element image, int x, int y) => _blink.Native_Clipboard_setDragImage_Callback(this, image, x, y);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -29040,16 +29040,7 @@ class WebSocket extends EventTarget {
void close([int code, String reason]) => _blink.Native_WebSocket_close(this, code, reason);
- /**
- * Transmit data to the server over this connection.
- *
- * This method accepts data of type [Blob], [ByteBuffer], [String], or
- * [TypedData]. Named variants [sendBlob], [sendByteBuffer], [sendString],
- * or [sendTypedData], in constrast, only accept data of the specified type.
- */
- @DomName('WebSocket.send')
- @DocsEditable()
- void send(data) => _blink.Native_WebSocket_send_Callback(this, data);
+ void send(data) => _blink.Native_WebSocket_send(this, data);
@DomName('WebSocket.sendBlob')
@DocsEditable()
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/idl/dart/dart.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698