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

Side by Side Diff: client/html/src/ObjectElementWrappingImplementation.dart

Issue 8970012: Get rid of ObjectElement#svgDocument. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « client/html/src/ObjectElement.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 class ObjectElementWrappingImplementation extends ElementWrappingImplementation implements ObjectElement { 5 class ObjectElementWrappingImplementation extends ElementWrappingImplementation implements ObjectElement {
6 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} 6 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
7 7
8 String get align() { return _ptr.align; } 8 String get align() { return _ptr.align; }
9 9
10 void set align(String value) { _ptr.align = value; } 10 void set align(String value) { _ptr.align = value; }
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 bool get willValidate() { return _ptr.willValidate; } 80 bool get willValidate() { return _ptr.willValidate; }
81 81
82 bool checkValidity() { 82 bool checkValidity() {
83 return _ptr.checkValidity(); 83 return _ptr.checkValidity();
84 } 84 }
85 85
86 void setCustomValidity(String error) { 86 void setCustomValidity(String error) {
87 _ptr.setCustomValidity(error); 87 _ptr.setCustomValidity(error);
88 return; 88 return;
89 } 89 }
90
91 SVGDocument get svgDocument() =>
92 LevelDom.wrapSVGDocument(_ptr.getSVGDocument());
93 } 90 }
OLDNEW
« no previous file with comments | « client/html/src/ObjectElement.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698