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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLSelectElementWrappingImplementation.dart

Issue 8588010: Regenerate from IDL with LANGUAGE_JAVASCRIPT on (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Map Array to List Created 9 years, 1 month 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _HTMLSelectElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLSelectElement { 7 class _HTMLSelectElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLSelectElement {
8 _HTMLSelectElementWrappingImplementation() : super() {} 8 _HTMLSelectElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLSelectElementWrappingImplementation() native { 10 static create__HTMLSelectElementWrappingImplementation() native {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 Node item(int index) { 100 Node item(int index) {
101 return _item(this, index); 101 return _item(this, index);
102 } 102 }
103 static Node _item(receiver, index) native; 103 static Node _item(receiver, index) native;
104 104
105 Node namedItem(String name) { 105 Node namedItem(String name) {
106 return _namedItem(this, name); 106 return _namedItem(this, name);
107 } 107 }
108 static Node _namedItem(receiver, name) native; 108 static Node _namedItem(receiver, name) native;
109 109
110 void remove(int index) { 110 void remove() {
111 _remove(this, index); 111 _remove(this);
112 return; 112 return;
113 } 113 }
114 static void _remove(receiver, index) native; 114 static void _remove(receiver) native;
115 115
116 void setCustomValidity(String error) { 116 void setCustomValidity(String error) {
117 _setCustomValidity(this, error); 117 _setCustomValidity(this, error);
118 return; 118 return;
119 } 119 }
120 static void _setCustomValidity(receiver, error) native; 120 static void _setCustomValidity(receiver, error) native;
121 121
122 String get typeName() { return "HTMLSelectElement"; } 122 String get typeName() { return "HTMLSelectElement"; }
123 } 123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698