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

Side by Side Diff: lib/dom/dom.dart

Issue 10918059: Changing websocket API to make it possible to send array buffers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Sync to latest. Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #library('dart:dom_deprecated'); 1 #library('dart:dom_deprecated');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library with no implementation. 8 // Auto-generated Dart DOM library with no implementation.
9 9
10 10
(...skipping 12071 matching lines...) Expand 10 before | Expand all | Expand 10 after
12082 final String url; 12082 final String url;
12083 12083
12084 void addEventListener(String type, EventListener listener, [bool useCapture]); 12084 void addEventListener(String type, EventListener listener, [bool useCapture]);
12085 12085
12086 void close([int code, String reason]); 12086 void close([int code, String reason]);
12087 12087
12088 bool dispatchEvent(Event evt); 12088 bool dispatchEvent(Event evt);
12089 12089
12090 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 12090 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
12091 12091
12092 bool send(String data); 12092 bool send(/*custom*/ data);
12093 } 12093 }
12094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12095 // for details. All rights reserved. Use of this source code is governed by a 12095 // for details. All rights reserved. Use of this source code is governed by a
12096 // BSD-style license that can be found in the LICENSE file. 12096 // BSD-style license that can be found in the LICENSE file.
12097 12097
12098 // WARNING: Do not edit - generated code. 12098 // WARNING: Do not edit - generated code.
12099 12099
12100 interface WheelEvent extends MouseEvent { 12100 interface WheelEvent extends MouseEvent {
12101 12101
12102 final bool webkitDirectionInvertedFromDevice; 12102 final bool webkitDirectionInvertedFromDevice;
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
13119 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 13119 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
13120 // for details. All rights reserved. Use of this source code is governed by a 13120 // for details. All rights reserved. Use of this source code is governed by a
13121 // BSD-style license that can be found in the LICENSE file. 13121 // BSD-style license that can be found in the LICENSE file.
13122 13122
13123 Window get window() => _dummy(); 13123 Window get window() => _dummy();
13124 13124
13125 // TODO(vsm): Remove when prefixes are supported. 13125 // TODO(vsm): Remove when prefixes are supported.
13126 Window get dom_window() => _dummy(); 13126 Window get dom_window() => _dummy();
13127 13127
13128 Document get document() => _dummy(); 13128 Document get document() => _dummy();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698