Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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_VMSERVICE_IMPL_H_ | 5 #ifndef BIN_VMSERVICE_IMPL_H_ |
| 6 #define BIN_VMSERVICE_IMPL_H_ | 6 #define BIN_VMSERVICE_IMPL_H_ |
| 7 | 7 |
| 8 #include "bin/vmservice.h" | 8 #include "bin/vmservice.h" |
| 9 #include "platform/thread.h" | 9 #include "platform/thread.h" |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 static Dart_Isolate isolate_; | 41 static Dart_Isolate isolate_; |
| 42 static Dart_Port port_; | 42 static Dart_Port port_; |
| 43 static const char* error_msg_; | 43 static const char* error_msg_; |
| 44 static dart::Monitor* monitor_; | 44 static dart::Monitor* monitor_; |
| 45 | 45 |
| 46 DISALLOW_ALLOCATION(); | 46 DISALLOW_ALLOCATION(); |
| 47 DISALLOW_IMPLICIT_CONSTRUCTORS(VmService); | 47 DISALLOW_IMPLICIT_CONSTRUCTORS(VmService); |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 | 50 |
| 51 void VmServiceShutdownCallback(void* callback_data); | |
|
siva
2013/07/19 17:41:16
Can this be a static method inside of VmService?
Cutch
2013/07/19 18:15:02
Done.
| |
| 52 | |
| 51 } // namespace bin | 53 } // namespace bin |
| 52 } // namespace dart | 54 } // namespace dart |
| 53 | 55 |
| 54 #endif // BIN_VMSERVICE_IMPL_H_ | 56 #endif // BIN_VMSERVICE_IMPL_H_ |
| OLD | NEW |