| Index: runtime/vm/object_store.h
|
| diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
|
| index 805b9b1b465d1cba8a2d9ad0d18d688ed34c288a..ed902e091a8c64001de162a8032dd1907d16e7df 100644
|
| --- a/runtime/vm/object_store.h
|
| +++ b/runtime/vm/object_store.h
|
| @@ -30,7 +30,6 @@ class ObjectStore {
|
| kIsolate,
|
| kMath,
|
| kMirrors,
|
| - kProfiler,
|
| kTypedData,
|
| kVMService,
|
| };
|
| @@ -264,7 +263,6 @@ class ObjectStore {
|
| RawLibrary* isolate_library() const { return isolate_library_; }
|
| RawLibrary* math_library() const { return math_library_; }
|
| RawLibrary* mirrors_library() const { return mirrors_library_; }
|
| - RawLibrary* profiler_library() const { return profiler_library_; }
|
| RawLibrary* typed_data_library() const { return typed_data_library_; }
|
| RawLibrary* vmservice_library() const { return vmservice_library_; }
|
|
|
| @@ -297,9 +295,6 @@ class ObjectStore {
|
| case kMirrors:
|
| mirrors_library_ = value.raw();
|
| break;
|
| - case kProfiler:
|
| - profiler_library_ = value.raw();
|
| - break;
|
| case kTypedData:
|
| typed_data_library_ = value.raw();
|
| break;
|
| @@ -522,7 +517,6 @@ class ObjectStore {
|
| RawLibrary* math_library_;
|
| RawLibrary* mirrors_library_;
|
| RawLibrary* native_wrappers_library_;
|
| - RawLibrary* profiler_library_;
|
| RawLibrary* root_library_;
|
| RawLibrary* typed_data_library_;
|
| RawLibrary* vmservice_library_;
|
|
|