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_PROCESS_H_ | 5 #ifndef RUNTIME_BIN_PROCESS_H_ |
6 #define BIN_PROCESS_H_ | 6 #define RUNTIME_BIN_PROCESS_H_ |
7 | 7 |
8 #include "bin/builtin.h" | 8 #include "bin/builtin.h" |
9 #include "bin/io_buffer.h" | 9 #include "bin/io_buffer.h" |
10 #include "bin/lockers.h" | 10 #include "bin/lockers.h" |
11 #include "bin/thread.h" | 11 #include "bin/thread.h" |
12 #include "platform/globals.h" | 12 #include "platform/globals.h" |
13 #include "platform/utils.h" | 13 #include "platform/utils.h" |
14 | 14 |
15 namespace dart { | 15 namespace dart { |
16 namespace bin { | 16 namespace bin { |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 // Number of free bytes in the last node in the list. | 287 // Number of free bytes in the last node in the list. |
288 intptr_t free_size_; | 288 intptr_t free_size_; |
289 | 289 |
290 private: | 290 private: |
291 DISALLOW_COPY_AND_ASSIGN(BufferListBase); | 291 DISALLOW_COPY_AND_ASSIGN(BufferListBase); |
292 }; | 292 }; |
293 | 293 |
294 } // namespace bin | 294 } // namespace bin |
295 } // namespace dart | 295 } // namespace dart |
296 | 296 |
297 #endif // BIN_PROCESS_H_ | 297 #endif // RUNTIME_BIN_PROCESS_H_ |
OLD | NEW |