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

Side by Side Diff: client/html/generated/html/dartium/EntrySync.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months 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
(Empty)
1
2 class _EntrySyncImpl extends _DOMTypeBase implements EntrySync {
3 _EntrySyncImpl._wrap(ptr) : super._wrap(ptr);
4
5 DOMFileSystemSync get filesystem() => _wrap(_ptr.filesystem);
6
7 String get fullPath() => _wrap(_ptr.fullPath);
8
9 bool get isDirectory() => _wrap(_ptr.isDirectory);
10
11 bool get isFile() => _wrap(_ptr.isFile);
12
13 String get name() => _wrap(_ptr.name);
14
15 EntrySync copyTo(DirectoryEntrySync parent, String name) {
16 return _wrap(_ptr.copyTo(_unwrap(parent), _unwrap(name)));
17 }
18
19 Metadata getMetadata() {
20 return _wrap(_ptr.getMetadata());
21 }
22
23 DirectoryEntrySync getParent() {
24 return _wrap(_ptr.getParent());
25 }
26
27 EntrySync moveTo(DirectoryEntrySync parent, String name) {
28 return _wrap(_ptr.moveTo(_unwrap(parent), _unwrap(name)));
29 }
30
31 void remove() {
32 _ptr.remove();
33 return;
34 }
35
36 String toURL() {
37 return _wrap(_ptr.toURL());
38 }
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698