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_DBG_MESSAGE_H_ | 5 #ifndef BIN_DBG_MESSAGE_H_ |
6 #define BIN_DBG_MESSAGE_H_ | 6 #define BIN_DBG_MESSAGE_H_ |
7 | 7 |
8 #include "bin/builtin.h" | 8 #include "bin/builtin.h" |
9 #include "bin/thread.h" | 9 #include "bin/thread.h" |
10 #include "bin/utils.h" | 10 #include "bin/utils.h" |
11 | 11 |
12 #include "include/dart_debugger_api.h" | 12 #include "include/dart_tools_api.h" |
13 | 13 |
14 #include "platform/globals.h" | 14 #include "platform/globals.h" |
15 #include "platform/json.h" | 15 #include "platform/json.h" |
16 | 16 |
17 | 17 |
18 namespace dart { | 18 namespace dart { |
19 namespace bin { | 19 namespace bin { |
20 | 20 |
21 // TODO(hausner): Need better error handling. | 21 // TODO(hausner): Need better error handling. |
22 #define ASSERT_NOT_ERROR(handle) \ | 22 #define ASSERT_NOT_ERROR(handle) \ |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 static Mutex* msg_queue_list_lock_; | 273 static Mutex* msg_queue_list_lock_; |
274 | 274 |
275 DISALLOW_ALLOCATION(); | 275 DISALLOW_ALLOCATION(); |
276 DISALLOW_IMPLICIT_CONSTRUCTORS(DbgMsgQueueList); | 276 DISALLOW_IMPLICIT_CONSTRUCTORS(DbgMsgQueueList); |
277 }; | 277 }; |
278 | 278 |
279 } // namespace bin | 279 } // namespace bin |
280 } // namespace dart | 280 } // namespace dart |
281 | 281 |
282 #endif // BIN_DBG_MESSAGE_H_ | 282 #endif // BIN_DBG_MESSAGE_H_ |
OLD | NEW |