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

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

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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/isolate_summary.dart
diff --git a/runtime/observatory/lib/src/elements/isolate_summary.dart b/runtime/observatory/lib/src/elements/isolate_summary.dart
deleted file mode 100644
index 07d647a02d01506396ae0014274335558beb6013..0000000000000000000000000000000000000000
--- a/runtime/observatory/lib/src/elements/isolate_summary.dart
+++ /dev/null
@@ -1,114 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// 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 isolate_summary_element;
-
-import 'dart:async';
-import 'observatory_element.dart';
-import 'package:observatory/app.dart';
-import 'package:observatory/service.dart';
-import 'package:polymer/polymer.dart';
-
-@CustomTag('isolate-summary')
-class IsolateSummaryElement extends ObservatoryElement {
- IsolateSummaryElement.created() : super.created();
-
- @published Isolate isolate;
-}
-
-@CustomTag('isolate-run-state')
-class IsolateRunStateElement extends ObservatoryElement {
- IsolateRunStateElement.created() : super.created();
-
- @published Isolate isolate;
-
- Future pause(_) {
- return isolate.pause();
- }
- Future resume(_) {
- app.removePauseEvents(isolate);
- return isolate.resume();
- }
- Future stepInto(_) {
- app.removePauseEvents(isolate);
- return isolate.stepInto();
- }
- Future stepOver(_) {
- app.removePauseEvents(isolate);
- return isolate.stepOver();
- }
- Future stepOut(_) {
- app.removePauseEvents(isolate);
- return isolate.stepOut();
- }
-}
-
-@CustomTag('isolate-location')
-class IsolateLocationElement extends ObservatoryElement {
- IsolateLocationElement.created() : super.created();
-
- @published Isolate isolate;
-}
-
-@CustomTag('isolate-shared-summary')
-class IsolateSharedSummaryElement extends ObservatoryElement {
- IsolateSharedSummaryElement.created() : super.created();
-
- @published Isolate isolate;
-}
-
-class CounterChart {
- var _table = new DataTable();
- var _chart;
-
- void update(Map counters) {
- if (_table.columns == 0) {
- // Initialize.
- _table.addColumn('string', 'Name');
- _table.addColumn('number', 'Value');
- }
- _table.clearRows();
- for (var key in counters.keys) {
- var value = double.parse(counters[key].split('%')[0]);
- _table.addRow([key, value]);
- }
- }
-
- void draw(var element) {
- if (_chart == null) {
- assert(element != null);
- _chart = new Chart('PieChart', element);
- }
- _chart.draw(_table);
- }
-}
-
-@CustomTag('isolate-counter-chart')
-class IsolateCounterChartElement extends ObservatoryElement {
- IsolateCounterChartElement.created() : super.created();
-
- @published ObservableMap counters;
- CounterChart chart;
-
- void countersChanged(oldValue) {
- if (counters == null) {
- return;
- }
- // Lazily create the chart.
- if (GoogleChart.ready && chart == null) {
- chart = new CounterChart();
- }
- if (chart == null) {
- return;
- }
- chart.update(counters);
- var element = shadowRoot.querySelector('#counterPieChart');
- if (element != null) {
- chart.draw(element);
- }
- }
-}
-
-
-
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate_ref.html ('k') | runtime/observatory/lib/src/elements/isolate_summary.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698