| 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_CONNECTION_H_ | 5 #ifndef BIN_DBG_CONNECTION_H_ |
| 6 #define BIN_DBG_CONNECTION_H_ | 6 #define BIN_DBG_CONNECTION_H_ |
| 7 | 7 |
| 8 #include "bin/builtin.h" | 8 #include "bin/builtin.h" |
| 9 #include "bin/utils.h" | 9 #include "bin/utils.h" |
| 10 | 10 |
| 11 #include "include/dart_debugger_api.h" | 11 #include "include/dart_debugger_api.h" |
| 12 | 12 |
| 13 #include "platform/globals.h" | 13 #include "platform/globals.h" |
| 14 #include "platform/json.h" | 14 #include "platform/json.h" |
| 15 #include "platform/thread.h" | 15 #include "bin/thread.h" |
| 16 // Declare the OS-specific types ahead of defining the generic class. | 16 // Declare the OS-specific types ahead of defining the generic class. |
| 17 #if defined(TARGET_OS_ANDROID) | 17 #if defined(TARGET_OS_ANDROID) |
| 18 #include "bin/dbg_connection_android.h" | 18 #include "bin/dbg_connection_android.h" |
| 19 #elif defined(TARGET_OS_LINUX) | 19 #elif defined(TARGET_OS_LINUX) |
| 20 #include "bin/dbg_connection_linux.h" | 20 #include "bin/dbg_connection_linux.h" |
| 21 #elif defined(TARGET_OS_MACOS) | 21 #elif defined(TARGET_OS_MACOS) |
| 22 #include "bin/dbg_connection_macos.h" | 22 #include "bin/dbg_connection_macos.h" |
| 23 #elif defined(TARGET_OS_WINDOWS) | 23 #elif defined(TARGET_OS_WINDOWS) |
| 24 #include "bin/dbg_connection_win.h" | 24 #include "bin/dbg_connection_win.h" |
| 25 #else | 25 #else |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 115 |
| 116 friend class DebuggerConnectionImpl; | 116 friend class DebuggerConnectionImpl; |
| 117 | 117 |
| 118 DISALLOW_IMPLICIT_CONSTRUCTORS(DebuggerConnectionHandler); | 118 DISALLOW_IMPLICIT_CONSTRUCTORS(DebuggerConnectionHandler); |
| 119 }; | 119 }; |
| 120 | 120 |
| 121 } // namespace bin | 121 } // namespace bin |
| 122 } // namespace dart | 122 } // namespace dart |
| 123 | 123 |
| 124 #endif // BIN_DBG_CONNECTION_H_ | 124 #endif // BIN_DBG_CONNECTION_H_ |
| OLD | NEW |