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

Unified Diff: runtime/vm/object_store.h

Issue 19941002: Remove dart:codec and move classes into dart:convert. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. 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 ecf9ff4e9c901a92b912cbc826fe864ee8d50b00..35c5c9f375880f93504b0864837bb0030efde038 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -22,7 +22,6 @@ class ObjectStore {
enum {
kNone = 0,
kAsync,
- kCodec,
kCore,
kCollection,
kCollectionDev,
@@ -260,7 +259,6 @@ 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 {
@@ -278,9 +276,6 @@ class ObjectStore {
case kAsync:
async_library_ = value.raw();
break;
- case kCodec:
- codec_library_ = value.raw();
- break;
case kCore:
core_library_ = value.raw();
break;
@@ -464,7 +459,6 @@ 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_;
« 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