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

Side by Side Diff: client/html/generated/src/wrapping/_LinkElementWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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 LinkElementWrappingImplementation extends ElementWrappingImplementation im plements LinkElement { 7 class LinkElementWrappingImplementation extends ElementWrappingImplementation im plements LinkElement {
8 LinkElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} 8 LinkElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9 9
10 String get charset() { return _ptr.charset; } 10 String get charset() { return _ptr.charset; }
(...skipping 19 matching lines...) Expand all
30 String get rel() { return _ptr.rel; } 30 String get rel() { return _ptr.rel; }
31 31
32 void set rel(String value) { _ptr.rel = value; } 32 void set rel(String value) { _ptr.rel = value; }
33 33
34 String get rev() { return _ptr.rev; } 34 String get rev() { return _ptr.rev; }
35 35
36 void set rev(String value) { _ptr.rev = value; } 36 void set rev(String value) { _ptr.rev = value; }
37 37
38 StyleSheet get sheet() { return LevelDom.wrapStyleSheet(_ptr.sheet); } 38 StyleSheet get sheet() { return LevelDom.wrapStyleSheet(_ptr.sheet); }
39 39
40 DOMSettableTokenList get sizes() { return LevelDom.wrapDOMSettableTokenList(_p tr.sizes); }
41
42 void set sizes(DOMSettableTokenList value) { _ptr.sizes = LevelDom.unwrap(valu e); }
43
40 String get target() { return _ptr.target; } 44 String get target() { return _ptr.target; }
41 45
42 void set target(String value) { _ptr.target = value; } 46 void set target(String value) { _ptr.target = value; }
43 47
44 String get type() { return _ptr.type; } 48 String get type() { return _ptr.type; }
45 49
46 void set type(String value) { _ptr.type = value; } 50 void set type(String value) { _ptr.type = value; }
47 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698