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

Unified Diff: runtime/bin/vmservice/client/packages/observatory/src/observatory/isolate.dart

Issue 27530002: Reorganize VM Service client (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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/client/packages/observatory/src/observatory/isolate.dart
diff --git a/runtime/bin/vmservice/client/packages/observatory/src/observatory/isolate.dart b/runtime/bin/vmservice/client/packages/observatory/src/observatory/isolate.dart
deleted file mode 100644
index a7072b9ba9e0149444af4d58de0c0392ab5cc192..0000000000000000000000000000000000000000
--- a/runtime/bin/vmservice/client/packages/observatory/src/observatory/isolate.dart
+++ /dev/null
@@ -1,15 +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.
-
-part of observatory;
-
-/// State for a running isolate.
-class Isolate {
- final int id;
- final String name;
-
- Isolate(this.id, this.name);
-
- String toString() => '$id $name';
-}

Powered by Google App Engine
This is Rietveld 408576698