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

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

Issue 1120133002: Rework error handling in the service protocol and in Observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix tests Created 5 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/service_view.dart
diff --git a/runtime/observatory/lib/src/elements/service_view.dart b/runtime/observatory/lib/src/elements/service_view.dart
index 547b8fce17f88741863808e3c4ae7e40f5ef0469..afedd621ab3462408385db69ff4ad30ad001473d 100644
--- a/runtime/observatory/lib/src/elements/service_view.dart
+++ b/runtime/observatory/lib/src/elements/service_view.dart
@@ -126,16 +126,6 @@ class ServiceObjectViewElement extends ObservatoryElement {
new Element.tag('io-random-access-file-view');
element.file = object;
return element;
- case 'ServiceError':
- ServiceErrorViewElement element =
- new Element.tag('service-error-view');
- element.error = object;
- return element;
- case 'ServiceException':
- ServiceExceptionViewElement element =
- new Element.tag('service-exception-view');
- element.exception = object;
- return element;
case 'Script':
ScriptViewElement element = new Element.tag('script-view');
element.script = object;
« no previous file with comments | « runtime/observatory/lib/src/elements/service_exception_view.html ('k') | runtime/observatory/lib/src/elements/vm_connect.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698