Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: runtime/bin/vmservice_impl.h

Issue 19622003: VM Service isolate listing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698