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

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

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak 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 _EntryWrappingImplementation extends DOMWrapperBase implements Entry { 7 class _EntryWrappingImplementation extends DOMWrapperBase implements Entry {
8 _EntryWrappingImplementation() : super() {} 8 _EntryWrappingImplementation() : super() {}
9 9
10 static create__EntryWrappingImplementation() native { 10 static create__EntryWrappingImplementation() native {
11 return new _EntryWrappingImplementation(); 11 return new _EntryWrappingImplementation();
12 } 12 }
13 13
14 DOMFileSystem get filesystem() { return _get__Entry_filesystem(this); } 14 DOMFileSystem get filesystem() { return _get_filesystem(this); }
15 static DOMFileSystem _get__Entry_filesystem(var _this) native; 15 static DOMFileSystem _get_filesystem(var _this) native;
16 16
17 String get fullPath() { return _get__Entry_fullPath(this); } 17 String get fullPath() { return _get_fullPath(this); }
18 static String _get__Entry_fullPath(var _this) native; 18 static String _get_fullPath(var _this) native;
19 19
20 bool get isDirectory() { return _get__Entry_isDirectory(this); } 20 bool get isDirectory() { return _get_isDirectory(this); }
21 static bool _get__Entry_isDirectory(var _this) native; 21 static bool _get_isDirectory(var _this) native;
22 22
23 bool get isFile() { return _get__Entry_isFile(this); } 23 bool get isFile() { return _get_isFile(this); }
24 static bool _get__Entry_isFile(var _this) native; 24 static bool _get_isFile(var _this) native;
25 25
26 String get name() { return _get__Entry_name(this); } 26 String get name() { return _get_name(this); }
27 static String _get__Entry_name(var _this) native; 27 static String _get_name(var _this) native;
28 28
29 void copyTo(DirectoryEntry parent, [String name = null, EntryCallback successC allback = null, ErrorCallback errorCallback = null]) { 29 void copyTo(DirectoryEntry parent, [String name = null, EntryCallback successC allback = null, ErrorCallback errorCallback = null]) {
30 if (name === null) { 30 if (name === null) {
31 if (successCallback === null) { 31 if (successCallback === null) {
32 if (errorCallback === null) { 32 if (errorCallback === null) {
33 _copyTo(this, parent); 33 _copyTo(this, parent);
34 return; 34 return;
35 } 35 }
36 } 36 }
37 } else { 37 } else {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 static void _remove_2(receiver, successCallback) native; 151 static void _remove_2(receiver, successCallback) native;
152 static void _remove_3(receiver, successCallback, errorCallback) native; 152 static void _remove_3(receiver, successCallback, errorCallback) native;
153 153
154 String toURL() { 154 String toURL() {
155 return _toURL(this); 155 return _toURL(this);
156 } 156 }
157 static String _toURL(receiver) native; 157 static String _toURL(receiver) native;
158 158
159 String get typeName() { return "Entry"; } 159 String get typeName() { return "Entry"; }
160 } 160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698