OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #ifndef BIN_DIRECTORY_H_ | 5 #ifndef BIN_DIRECTORY_H_ |
6 #define BIN_DIRECTORY_H_ | 6 #define BIN_DIRECTORY_H_ |
7 | 7 |
8 #include "bin/builtin.h" | 8 #include "bin/builtin.h" |
9 #include "bin/dartutils.h" | 9 #include "bin/dartutils.h" |
10 #include "bin/thread.h" | 10 #include "bin/thread.h" |
11 #include "platform/globals.h" | 11 #include "platform/globals.h" |
12 | 12 |
13 | |
14 namespace dart { | 13 namespace dart { |
15 namespace bin { | 14 namespace bin { |
16 | 15 |
17 enum ListType { | 16 enum ListType { |
18 kListFile = 0, | 17 kListFile = 0, |
19 kListDirectory = 1, | 18 kListDirectory = 1, |
20 kListLink = 2, | 19 kListLink = 2, |
21 kListError = 3, | 20 kListError = 3, |
22 kListDone = 4 | 21 kListDone = 4 |
23 }; | 22 }; |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 | 279 |
281 private: | 280 private: |
282 DISALLOW_ALLOCATION(); | 281 DISALLOW_ALLOCATION(); |
283 DISALLOW_IMPLICIT_CONSTRUCTORS(Directory); | 282 DISALLOW_IMPLICIT_CONSTRUCTORS(Directory); |
284 }; | 283 }; |
285 | 284 |
286 } // namespace bin | 285 } // namespace bin |
287 } // namespace dart | 286 } // namespace dart |
288 | 287 |
289 #endif // BIN_DIRECTORY_H_ | 288 #endif // BIN_DIRECTORY_H_ |
OLD | NEW |