| Index: runtime/vm/dart.h
|
| ===================================================================
|
| --- runtime/vm/dart.h (revision 6698)
|
| +++ runtime/vm/dart.h (working copy)
|
| @@ -14,6 +14,7 @@
|
| class DebugInfo;
|
| class Isolate;
|
| class RawError;
|
| +class ThreadPool;
|
|
|
| class Dart : public AllStatic {
|
| public:
|
| @@ -25,6 +26,7 @@
|
| static void ShutdownIsolate();
|
|
|
| static Isolate* vm_isolate() { return vm_isolate_; }
|
| + static ThreadPool* thread_pool() { return thread_pool_; }
|
|
|
| static void set_pprof_symbol_generator(DebugInfo* value) {
|
| pprof_symbol_generator_ = value;
|
| @@ -33,6 +35,7 @@
|
|
|
| private:
|
| static Isolate* vm_isolate_;
|
| + static ThreadPool* thread_pool_;
|
| static DebugInfo* pprof_symbol_generator_;
|
| };
|
|
|
|
|