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

Side by Side Diff: client/dom/generated/src/wrapping/_EntrySyncWrappingImplementation.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 _EntrySyncWrappingImplementation extends DOMWrapperBase implements EntrySy nc { 7 class _EntrySyncWrappingImplementation extends DOMWrapperBase implements EntrySy nc {
8 _EntrySyncWrappingImplementation() : super() {} 8 _EntrySyncWrappingImplementation() : super() {}
9 9
10 static create__EntrySyncWrappingImplementation() native { 10 static create__EntrySyncWrappingImplementation() native {
11 return new _EntrySyncWrappingImplementation(); 11 return new _EntrySyncWrappingImplementation();
12 } 12 }
13 13
14 DOMFileSystemSync get filesystem() { return _get__EntrySync_filesystem(this); } 14 DOMFileSystemSync get filesystem() { return _get_filesystem(this); }
15 static DOMFileSystemSync _get__EntrySync_filesystem(var _this) native; 15 static DOMFileSystemSync _get_filesystem(var _this) native;
16 16
17 String get fullPath() { return _get__EntrySync_fullPath(this); } 17 String get fullPath() { return _get_fullPath(this); }
18 static String _get__EntrySync_fullPath(var _this) native; 18 static String _get_fullPath(var _this) native;
19 19
20 bool get isDirectory() { return _get__EntrySync_isDirectory(this); } 20 bool get isDirectory() { return _get_isDirectory(this); }
21 static bool _get__EntrySync_isDirectory(var _this) native; 21 static bool _get_isDirectory(var _this) native;
22 22
23 bool get isFile() { return _get__EntrySync_isFile(this); } 23 bool get isFile() { return _get_isFile(this); }
24 static bool _get__EntrySync_isFile(var _this) native; 24 static bool _get_isFile(var _this) native;
25 25
26 String get name() { return _get__EntrySync_name(this); } 26 String get name() { return _get_name(this); }
27 static String _get__EntrySync_name(var _this) native; 27 static String _get_name(var _this) native;
28 28
29 EntrySync copyTo(DirectoryEntrySync parent, String name) { 29 EntrySync copyTo(DirectoryEntrySync parent, String name) {
30 return _copyTo(this, parent, name); 30 return _copyTo(this, parent, name);
31 } 31 }
32 static EntrySync _copyTo(receiver, parent, name) native; 32 static EntrySync _copyTo(receiver, parent, name) native;
33 33
34 Metadata getMetadata() { 34 Metadata getMetadata() {
35 return _getMetadata(this); 35 return _getMetadata(this);
36 } 36 }
37 static Metadata _getMetadata(receiver) native; 37 static Metadata _getMetadata(receiver) native;
(...skipping 14 matching lines...) Expand all
52 } 52 }
53 static void _remove(receiver) native; 53 static void _remove(receiver) native;
54 54
55 String toURL() { 55 String toURL() {
56 return _toURL(this); 56 return _toURL(this);
57 } 57 }
58 static String _toURL(receiver) native; 58 static String _toURL(receiver) native;
59 59
60 String get typeName() { return "EntrySync"; } 60 String get typeName() { return "EntrySync"; }
61 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698