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

Unified Diff: runtime/observatory/lib/src/models/objects/ports.dart

Issue 2267863002: Converted Observatory ports-page element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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/models/objects/ports.dart
diff --git a/runtime/observatory/lib/src/models/objects/pc_descriptors.dart b/runtime/observatory/lib/src/models/objects/ports.dart
similarity index 71%
copy from runtime/observatory/lib/src/models/objects/pc_descriptors.dart
copy to runtime/observatory/lib/src/models/objects/ports.dart
index fea4ce66d93c290c3edf977273f5655b1862ce8d..209357e4b50321631384456d141f88ddc82f1b3c 100644
--- a/runtime/observatory/lib/src/models/objects/pc_descriptors.dart
+++ b/runtime/observatory/lib/src/models/objects/ports.dart
@@ -4,7 +4,11 @@
part of models;
-abstract class PcDescriptorsRef extends ObjectRef {
- /// [optional]
+abstract class Ports {
+ Iterable<Port> get elements;
+}
+
+abstract class Port {
String get name;
+ ObjectRef get handler;
}

Powered by Google App Engine
This is Rietveld 408576698