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

Unified Diff: runtime/bin/vmservice/observatory/lib/src/elements/object_view.dart

Issue 560503002: Add support for TokenStream, LocalVarDescriptors, and PcDescriptors to service lib and generic obje… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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/bin/vmservice/observatory/lib/src/elements/object_view.dart
diff --git a/runtime/bin/vmservice/observatory/lib/src/elements/error_ref.dart b/runtime/bin/vmservice/observatory/lib/src/elements/object_view.dart
similarity index 55%
copy from runtime/bin/vmservice/observatory/lib/src/elements/error_ref.dart
copy to runtime/bin/vmservice/observatory/lib/src/elements/object_view.dart
index 14d364e37b196cfc87fd325af3d86c22d5eba2c2..307b67543ea5c40c2de962127b805b2c3398aaaa 100644
--- a/runtime/bin/vmservice/observatory/lib/src/elements/error_ref.dart
+++ b/runtime/bin/vmservice/observatory/lib/src/elements/object_view.dart
@@ -2,13 +2,16 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library error_ref_element;
+library object_view;
-import 'package:polymer/polymer.dart';
+import 'dart:async';
+import 'observatory_element.dart';
import 'package:observatory/service.dart';
-import 'service_ref.dart';
+import 'package:polymer/polymer.dart';
+
+@CustomTag('object-view')
+class ObjectViewElement extends ObservatoryElement {
+ @published ServiceObject object;
-@CustomTag('error-ref')
-class ErrorRefElement extends ServiceRefElement {
- ErrorRefElement.created() : super.created();
+ ObjectViewElement.created() : super.created();
}

Powered by Google App Engine
This is Rietveld 408576698