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

Unified Diff: runtime/vm/object_store.h

Issue 19000006: First version of Codecs and Converters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/bootstrap.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index dc9b5dcb949653bbfd0515aa9bb86c27542fc778..b4f954b38071b1c32b0b688d9af7e18ddd804015 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -22,9 +22,11 @@ class ObjectStore {
enum {
kNone = 0,
kAsync,
+ kCodec,
kCore,
kCollection,
kCollectionDev,
+ kConvert,
kIsolate,
kJson,
kMath,
@@ -261,11 +263,13 @@ class ObjectStore {
RawLibrary* async_library() const { return async_library_; }
RawLibrary* builtin_library() const { return builtin_library_; }
+ RawLibrary* codec_library() const { return codec_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* convert_library() const { return convert_library_; }
RawLibrary* isolate_library() const { return isolate_library_; }
RawLibrary* json_library() const { return json_library_; }
RawLibrary* math_library() const { return math_library_; }
@@ -277,6 +281,9 @@ class ObjectStore {
case kAsync:
async_library_ = value.raw();
break;
+ case kCodec:
+ codec_library_ = value.raw();
+ break;
case kCore:
core_library_ = value.raw();
break;
@@ -286,6 +293,9 @@ class ObjectStore {
case kCollectionDev:
collection_dev_library_ = value.raw();
break;
+ case kConvert:
+ convert_library_ = value.raw();
+ break;
case kIsolate:
isolate_library_ = value.raw();
break;
@@ -458,9 +468,11 @@ class ObjectStore {
RawArray* canonical_type_arguments_;
RawLibrary* async_library_;
RawLibrary* builtin_library_;
+ RawLibrary* codec_library_;
RawLibrary* core_library_;
RawLibrary* collection_library_;
RawLibrary* collection_dev_library_;
+ RawLibrary* convert_library_;
RawLibrary* isolate_library_;
RawLibrary* json_library_;
RawLibrary* math_library_;
« no previous file with comments | « runtime/vm/bootstrap.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698