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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLLinkElementWrappingImplementation.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 _HTMLLinkElementWrappingImplementation extends _HTMLElementWrappingImpleme ntation implements HTMLLinkElement { 7 class _HTMLLinkElementWrappingImplementation extends _HTMLElementWrappingImpleme ntation implements HTMLLinkElement {
8 _HTMLLinkElementWrappingImplementation() : super() {} 8 _HTMLLinkElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLLinkElementWrappingImplementation() native { 10 static create__HTMLLinkElementWrappingImplementation() native {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 String get rev() { return _get__HTMLLinkElement_rev(this); } 50 String get rev() { return _get__HTMLLinkElement_rev(this); }
51 static String _get__HTMLLinkElement_rev(var _this) native; 51 static String _get__HTMLLinkElement_rev(var _this) native;
52 52
53 void set rev(String value) { _set__HTMLLinkElement_rev(this, value); } 53 void set rev(String value) { _set__HTMLLinkElement_rev(this, value); }
54 static void _set__HTMLLinkElement_rev(var _this, String value) native; 54 static void _set__HTMLLinkElement_rev(var _this, String value) native;
55 55
56 StyleSheet get sheet() { return _get__HTMLLinkElement_sheet(this); } 56 StyleSheet get sheet() { return _get__HTMLLinkElement_sheet(this); }
57 static StyleSheet _get__HTMLLinkElement_sheet(var _this) native; 57 static StyleSheet _get__HTMLLinkElement_sheet(var _this) native;
58 58
59 DOMSettableTokenList get sizes() { return _get__HTMLLinkElement_sizes(this); }
60 static DOMSettableTokenList _get__HTMLLinkElement_sizes(var _this) native;
61
62 void set sizes(DOMSettableTokenList value) { _set__HTMLLinkElement_sizes(this, value); }
63 static void _set__HTMLLinkElement_sizes(var _this, DOMSettableTokenList value) native;
64
59 String get target() { return _get__HTMLLinkElement_target(this); } 65 String get target() { return _get__HTMLLinkElement_target(this); }
60 static String _get__HTMLLinkElement_target(var _this) native; 66 static String _get__HTMLLinkElement_target(var _this) native;
61 67
62 void set target(String value) { _set__HTMLLinkElement_target(this, value); } 68 void set target(String value) { _set__HTMLLinkElement_target(this, value); }
63 static void _set__HTMLLinkElement_target(var _this, String value) native; 69 static void _set__HTMLLinkElement_target(var _this, String value) native;
64 70
65 String get type() { return _get__HTMLLinkElement_type(this); } 71 String get type() { return _get__HTMLLinkElement_type(this); }
66 static String _get__HTMLLinkElement_type(var _this) native; 72 static String _get__HTMLLinkElement_type(var _this) native;
67 73
68 void set type(String value) { _set__HTMLLinkElement_type(this, value); } 74 void set type(String value) { _set__HTMLLinkElement_type(this, value); }
69 static void _set__HTMLLinkElement_type(var _this, String value) native; 75 static void _set__HTMLLinkElement_type(var _this, String value) native;
70 76
71 String get typeName() { return "HTMLLinkElement"; } 77 String get typeName() { return "HTMLLinkElement"; }
72 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698