Chromium Code Reviews| Index: runtime/vm/object_store.h |
| diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h |
| index 866f62c207b71aad453f101d55d42bee140458d3..2c05769618ea2b109051a09fa27ef749b7ef39a0 100644 |
| --- a/runtime/vm/object_store.h |
| +++ b/runtime/vm/object_store.h |
| @@ -24,8 +24,8 @@ class ObjectStore { |
| kAsync, |
| kCore, |
| kCollection, |
| - kCollectionDev, |
| kConvert, |
| + kInternal, |
| kIsolate, |
| kMath, |
| kMirrors, |
| @@ -273,8 +273,8 @@ class ObjectStore { |
| RawLibrary* builtin_library() const { return builtin_library_; } |
| RawLibrary* core_library() const { return core_library_; } |
| RawLibrary* collection_library() const { return collection_library_; } |
| - RawLibrary* collection_dev_library() const { |
| - return collection_dev_library_; |
| + RawLibrary* internal_library() const { |
|
Ivan Posva
2014/01/14 23:35:32
Sorted and it probably fits onto a single line now
Lasse Reichstein Nielsen
2014/01/15 09:27:42
Done.
|
| + return internal_library_; |
| } |
| RawLibrary* convert_library() const { return convert_library_; } |
| RawLibrary* isolate_library() const { return isolate_library_; } |
| @@ -292,8 +292,8 @@ class ObjectStore { |
| case kCollection: |
| collection_library_ = value.raw(); |
| break; |
| - case kCollectionDev: |
| - collection_dev_library_ = value.raw(); |
| + case kInternal: |
|
Ivan Posva
2014/01/14 23:35:32
Sorted.
Lasse Reichstein Nielsen
2014/01/15 09:27:42
Done.
|
| + internal_library_ = value.raw(); |
| break; |
| case kConvert: |
| convert_library_ = value.raw(); |
| @@ -465,7 +465,7 @@ class ObjectStore { |
| RawLibrary* builtin_library_; |
| RawLibrary* core_library_; |
| RawLibrary* collection_library_; |
| - RawLibrary* collection_dev_library_; |
| + RawLibrary* internal_library_; |
|
Ivan Posva
2014/01/14 23:35:32
sorted
Lasse Reichstein Nielsen
2014/01/15 09:27:42
Done.
|
| RawLibrary* convert_library_; |
| RawLibrary* isolate_library_; |
| RawLibrary* math_library_; |