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

Unified Diff: runtime/vm/object_store.h

Issue 15820008: Remove library dart:crypto (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 7 years, 7 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/object.cc ('k') | runtime/vm/object_store.cc » ('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 3c31d8ffa4220af833d41b24d278002a9c1a48ba..ffe1419ec2ec26f5a1be5fe3f66fed56307e17da 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -25,14 +25,12 @@ class ObjectStore {
kCore,
kCollection,
kCollectionDev,
- kCrypto,
kIsolate,
kJson,
kMath,
kMirrors,
kTypedData,
kUtf,
- kUri,
};
~ObjectStore();
@@ -261,7 +259,6 @@ class ObjectStore {
RawLibrary* collection_dev_library() const {
return collection_dev_library_;
}
- RawLibrary* crypto_library() const { return crypto_library_; }
RawLibrary* isolate_library() const { return isolate_library_; }
RawLibrary* json_library() const { return json_library_; }
RawLibrary* math_library() const { return math_library_; }
@@ -282,9 +279,6 @@ class ObjectStore {
case kCollectionDev:
collection_dev_library_ = value.raw();
break;
- case kCrypto:
- crypto_library_ = value.raw();
- break;
case kIsolate:
isolate_library_ = value.raw();
break;
@@ -459,7 +453,6 @@ class ObjectStore {
RawLibrary* core_library_;
RawLibrary* collection_library_;
RawLibrary* collection_dev_library_;
- RawLibrary* crypto_library_;
RawLibrary* isolate_library_;
RawLibrary* json_library_;
RawLibrary* math_library_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698