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

Unified Diff: runtime/vm/object_store.h

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup 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 f7fce5d7a8892c2f1936fcddf28d27b779435dec..3c31d8ffa4220af833d41b24d278002a9c1a48ba 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -267,7 +267,6 @@ class ObjectStore {
RawLibrary* math_library() const { return math_library_; }
RawLibrary* mirrors_library() const { return mirrors_library_; }
RawLibrary* typed_data_library() const { return typed_data_library_; }
- RawLibrary* uri_library() const { return uri_library_; }
RawLibrary* utf_library() const { return utf_library_; }
void set_bootstrap_library(intptr_t index, const Library& value) {
switch (index) {
@@ -304,9 +303,6 @@ class ObjectStore {
case kUtf:
utf_library_ = value.raw();
break;
- case kUri:
- uri_library_ = value.raw();
- break;
default:
UNREACHABLE();
}
@@ -471,7 +467,6 @@ class ObjectStore {
RawLibrary* native_wrappers_library_;
RawLibrary* root_library_;
RawLibrary* typed_data_library_;
- RawLibrary* uri_library_;
RawLibrary* utf_library_;
RawGrowableObjectArray* libraries_;
RawGrowableObjectArray* pending_classes_;
« 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