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

Unified Diff: runtime/observatory/lib/src/elements/ports.dart

Issue 2873013004: Omnibus Observatory UI fixes: (Closed)
Patch Set: Created 3 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/observatory/lib/src/elements/ports.dart
diff --git a/runtime/observatory/lib/src/elements/ports.dart b/runtime/observatory/lib/src/elements/ports.dart
index 262aaacdab1caf9a052ebf991d48d0e81387a269..ff7467313bae58ac74c4cda5c47b7440318926d6 100644
--- a/runtime/observatory/lib/src/elements/ports.dart
+++ b/runtime/observatory/lib/src/elements/ports.dart
@@ -38,7 +38,7 @@ class PortsElement extends HtmlElement implements Renderable {
M.EventRepository _events;
M.NotificationRepository _notifications;
M.PortsRepository _ports;
- M.InstanceRepository _instances;
+ M.ObjectRepository _objects;
M.Ports _isolatePorts;
M.IsolateRef get isolate => _isolate;
@@ -52,14 +52,14 @@ class PortsElement extends HtmlElement implements Renderable {
M.EventRepository events,
M.NotificationRepository notifications,
M.PortsRepository ports,
- M.InstanceRepository instances,
+ M.ObjectRepository objects,
{RenderingQueue queue}) {
assert(vm != null);
assert(isolate != null);
assert(events != null);
assert(notifications != null);
assert(ports != null);
- assert(instances != null);
+ assert(objects != null);
PortsElement e = document.createElement(tag.name);
e._r = new RenderingScheduler(e, queue: queue);
e._vm = vm;
@@ -67,7 +67,7 @@ class PortsElement extends HtmlElement implements Renderable {
e._events = events;
e._notifications = notifications;
e._ports = ports;
- e._instances = instances;
+ e._objects = objects;
return e;
}
@@ -134,7 +134,7 @@ class PortsElement extends HtmlElement implements Renderable {
new DivElement()
..classes = ['memberValue']
..children = [
- anyRef(_isolate, port.handler, _instances, queue: _r.queue)
+ anyRef(_isolate, port.handler, _objects, queue: _r.queue)
]
])
.toList();
« no previous file with comments | « runtime/observatory/lib/src/elements/persistent_handles.dart ('k') | runtime/observatory/lib/src/elements/retaining_path.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698