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

Unified Diff: runtime/vm/object_store.h

Issue 1132113002: Rename 'dart:debugger' to 'dart:developer' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index becebc245a0d4f3502ffe76fee0de61bbdd83d0b..c1d73126c7b9f981d8cd62512e559da040f8d8a3 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -25,7 +25,7 @@ class ObjectStore {
kCore,
kCollection,
kConvert,
- kDebugger,
+ kDeveloper,
kInternal,
kIsolate,
kMath,
@@ -258,7 +258,7 @@ class ObjectStore {
RawLibrary* core_library() const { return core_library_; }
RawLibrary* collection_library() const { return collection_library_; }
RawLibrary* convert_library() const { return convert_library_; }
- RawLibrary* debugger_library() const { return debugger_library_; }
+ RawLibrary* developer_library() const { return developer_library_; }
RawLibrary* internal_library() const { return internal_library_; }
RawLibrary* isolate_library() const { return isolate_library_; }
RawLibrary* math_library() const { return math_library_; }
@@ -280,8 +280,8 @@ class ObjectStore {
case kConvert:
convert_library_ = value.raw();
break;
- case kDebugger:
- debugger_library_ = value.raw();
+ case kDeveloper:
+ developer_library_ = value.raw();
break;
case kInternal:
internal_library_ = value.raw();
@@ -489,7 +489,7 @@ class ObjectStore {
RawLibrary* core_library_;
RawLibrary* collection_library_;
RawLibrary* convert_library_;
- RawLibrary* debugger_library_;
+ RawLibrary* developer_library_;
RawLibrary* internal_library_;
RawLibrary* isolate_library_;
RawLibrary* math_library_;

Powered by Google App Engine
This is Rietveld 408576698