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

Unified Diff: runtime/vm/object_store.h

Issue 14426006: Rename dart:typeddata to dart:typed_data. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 5ceabd5020038d2615f84ce6d9bbba59890ed45a..8eb1d16414f4c037c7d1c8592a1b7915a086f41e 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -194,11 +194,11 @@ class ObjectStore {
RawType* uint32x4_type() const { return uint32x4_type_; }
void set_uint32x4_type(const Type& value) { uint32x4_type_ = value.raw(); }
- RawArray* typeddata_classes() const {
- return typeddata_classes_;
+ RawArray* typed_data_classes() const {
+ return typed_data_classes_;
}
- void set_typeddata_classes(const Array& value) {
- typeddata_classes_ = value.raw();
+ void set_typed_data_classes(const Array& value) {
+ typed_data_classes_ = value.raw();
}
RawClass* stacktrace_class() const {
@@ -319,11 +319,11 @@ class ObjectStore {
root_library_ = value.raw();
}
- RawLibrary* typeddata_library() const {
- return typeddata_library_;
+ RawLibrary* typed_data_library() const {
+ return typed_data_library_;
}
- void set_typeddata_library(const Library& value) {
- typeddata_library_ = value.raw();
+ void set_typed_data_library(const Library& value) {
+ typed_data_library_ = value.raw();
}
RawLibrary* uri_library() const {
@@ -464,7 +464,7 @@ class ObjectStore {
RawClass* growable_object_array_class_;
RawClass* float32x4_class_;
RawClass* uint32x4_class_;
- RawArray* typeddata_classes_;
+ RawArray* typed_data_classes_;
RawClass* stacktrace_class_;
RawClass* jsregexp_class_;
RawClass* weak_property_class_;
@@ -483,7 +483,7 @@ class ObjectStore {
RawLibrary* mirrors_library_;
RawLibrary* native_wrappers_library_;
RawLibrary* root_library_;
- RawLibrary* typeddata_library_;
+ RawLibrary* typed_data_library_;
RawLibrary* uri_library_;
RawLibrary* utf_library_;
RawGrowableObjectArray* libraries_;
« 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