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

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

Issue 9663027: Remove generated directories with 100s of files. (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 // 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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class _EntrySyncWrappingImplementation extends DOMWrapperBase implements EntrySy nc {
8 _EntrySyncWrappingImplementation() : super() {}
9
10 static create__EntrySyncWrappingImplementation() native {
11 return new _EntrySyncWrappingImplementation();
12 }
13
14 DOMFileSystemSync get filesystem() { return _get_filesystem(this); }
15 static DOMFileSystemSync _get_filesystem(var _this) native;
16
17 String get fullPath() { return _get_fullPath(this); }
18 static String _get_fullPath(var _this) native;
19
20 bool get isDirectory() { return _get_isDirectory(this); }
21 static bool _get_isDirectory(var _this) native;
22
23 bool get isFile() { return _get_isFile(this); }
24 static bool _get_isFile(var _this) native;
25
26 String get name() { return _get_name(this); }
27 static String _get_name(var _this) native;
28
29 EntrySync copyTo(DirectoryEntrySync parent, String name) {
30 return _copyTo(this, parent, name);
31 }
32 static EntrySync _copyTo(receiver, parent, name) native;
33
34 Metadata getMetadata() {
35 return _getMetadata(this);
36 }
37 static Metadata _getMetadata(receiver) native;
38
39 DirectoryEntrySync getParent() {
40 return _getParent(this);
41 }
42 static DirectoryEntrySync _getParent(receiver) native;
43
44 EntrySync moveTo(DirectoryEntrySync parent, String name) {
45 return _moveTo(this, parent, name);
46 }
47 static EntrySync _moveTo(receiver, parent, name) native;
48
49 void remove() {
50 _remove(this);
51 return;
52 }
53 static void _remove(receiver) native;
54
55 String toURL() {
56 return _toURL(this);
57 }
58 static String _toURL(receiver) native;
59
60 String get typeName() { return "EntrySync"; }
61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698