| 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 "platform/globals.h" | 11 #include "platform/globals.h" |
| 11 #include "platform/thread.h" | |
| 12 | 12 |
| 13 | 13 |
| 14 namespace dart { | 14 namespace dart { |
| 15 namespace bin { | 15 namespace bin { |
| 16 | 16 |
| 17 enum ListType { | 17 enum ListType { |
| 18 kListFile = 0, | 18 kListFile = 0, |
| 19 kListDirectory = 1, | 19 kListDirectory = 1, |
| 20 kListLink = 2, | 20 kListLink = 2, |
| 21 kListError = 3, | 21 kListError = 3, |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 | 272 |
| 273 private: | 273 private: |
| 274 DISALLOW_ALLOCATION(); | 274 DISALLOW_ALLOCATION(); |
| 275 DISALLOW_IMPLICIT_CONSTRUCTORS(Directory); | 275 DISALLOW_IMPLICIT_CONSTRUCTORS(Directory); |
| 276 }; | 276 }; |
| 277 | 277 |
| 278 } // namespace bin | 278 } // namespace bin |
| 279 } // namespace dart | 279 } // namespace dart |
| 280 | 280 |
| 281 #endif // BIN_DIRECTORY_H_ | 281 #endif // BIN_DIRECTORY_H_ |
| OLD | NEW |