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

Issue 205713004: Add isolate tag-profile and better handling of errors (Closed)

Created:
6 years, 9 months ago by Cutch
Modified:
6 years, 9 months ago
Reviewers:
turnidge
CC:
reviews_dartlang.org, turnidge, vm-dev_dartlang.org
Visibility:
Public.

Description

Add isolate tag-profile model and UI. Distinction between a Dart Error and a ServiceError/ServiceException. Better Observatory behaviour when a ServiceError/ServiceExceptions occurs. Display isolate's sticky error. R=turnidge@google.com Committed: https://code.google.com/p/dart/source/detail?r=34377

Patch Set 1 #

Patch Set 2 : #

Total comments: 19

Patch Set 3 : #

Total comments: 2

Patch Set 4 : #

Patch Set 5 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+14000 lines, -13084 lines) Patch
M runtime/bin/vmservice/client/deployed/web/index.html View 1 2 3 4 3 chunks +78 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js View 1 2 3 4 565 chunks +4396 lines, -4317 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index_devtools.html View 1 2 3 4 3 chunks +78 lines, -0 lines 0 comments Download
runtime/bin/vmservice/client/deployed/web/index_devtools.html_bootstrap.dart.js View 1 2 3 4 565 chunks +4396 lines, -4317 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index_devtools.html_bootstrap.dart.js View 1 2 3 4 565 chunks +4396 lines, -4317 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/elements.html View 1 2 3 4 1 chunk +2 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_view.html View 1 2 3 4 2 chunks +37 lines, -0 lines 0 comments Download
A + runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/service_error_view.html View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
A + runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/service_exception_view.html View 1 2 3 4 2 chunks +7 lines, -4 lines 0 comments Download
M runtime/bin/vmservice/client/lib/elements.dart View 1 chunk +2 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/elements.html View 1 chunk +2 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/service_html.dart View 1 chunk +5 lines, -3 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/app/application.dart View 1 chunk +14 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/app/chart.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/app/location_manager.dart View 1 chunk +8 lines, -20 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/isolate_view.dart View 1 2 2 chunks +103 lines, -5 lines 0 comments Download
runtime/bin/vmservice/client/lib/src/elements/isolate_view.html View 1 2 2 chunks +37 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/isolate_view.html View 1 2 2 chunks +37 lines, -0 lines 0 comments Download
A + runtime/bin/vmservice/client/lib/src/elements/service_error_view.dart View 1 2 1 chunk +6 lines, -10 lines 0 comments Download
A + runtime/bin/vmservice/client/lib/src/elements/service_error_view.html View 2 chunks +2 lines, -2 lines 0 comments Download
A + runtime/bin/vmservice/client/lib/src/elements/service_exception_view.dart View 1 chunk +8 lines, -11 lines 0 comments Download
A + runtime/bin/vmservice/client/lib/src/elements/service_exception_view.html View 2 chunks +7 lines, -4 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/service_view.dart View 1 chunk +10 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/vm_view.dart View 1 2 1 chunk +1 line, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/src/service/object.dart View 1 2 3 11 chunks +198 lines, -19 lines 0 comments Download
M runtime/vm/isolate.h View 4 chunks +11 lines, -0 lines 0 comments Download
M runtime/vm/isolate.cc View 1 2 5 chunks +26 lines, -1 line 0 comments Download
M runtime/vm/profiler.h View 1 chunk +1 line, -0 lines 0 comments Download
M runtime/vm/profiler.cc View 4 chunks +4 lines, -25 lines 0 comments Download
M runtime/vm/service.cc View 2 chunks +37 lines, -0 lines 0 comments Download
M runtime/vm/service/message.dart View 1 chunk +4 lines, -2 lines 0 comments Download
M runtime/vm/service/running_isolates.dart View 2 chunks +17 lines, -5 lines 0 comments Download
M runtime/vm/tags.h View 3 chunks +20 lines, -3 lines 0 comments Download
M runtime/vm/tags.cc View 2 chunks +42 lines, -5 lines 0 comments Download
M runtime/vm/thread_interrupter.h View 2 chunks +3 lines, -1 line 0 comments Download
M runtime/vm/thread_interrupter.cc View 1 chunk +1 line, -6 lines 0 comments Download

Messages

Total messages: 6 (0 generated)
Cutch
6 years, 9 months ago (2014-03-24 14:53:13 UTC) #1
turnidge
https://codereview.chromium.org/205713004/diff/20001/runtime/bin/vmservice/client/lib/src/elements/isolate_view.html File runtime/bin/vmservice/client/lib/src/elements/isolate_view.html (right): https://codereview.chromium.org/205713004/diff/20001/runtime/bin/vmservice/client/lib/src/elements/isolate_view.html#newcode84 runtime/bin/vmservice/client/lib/src/elements/isolate_view.html:84: <h1>Sticky Error</h1> Let's drop the word sticky here - ...
6 years, 9 months ago (2014-03-24 20:22:13 UTC) #2
Cutch
https://codereview.chromium.org/205713004/diff/20001/runtime/bin/vmservice/client/lib/src/elements/isolate_view.html File runtime/bin/vmservice/client/lib/src/elements/isolate_view.html (right): https://codereview.chromium.org/205713004/diff/20001/runtime/bin/vmservice/client/lib/src/elements/isolate_view.html#newcode84 runtime/bin/vmservice/client/lib/src/elements/isolate_view.html:84: <h1>Sticky Error</h1> On 2014/03/24 20:22:13, turnidge wrote: > Let's ...
6 years, 9 months ago (2014-03-25 14:39:06 UTC) #3
turnidge
lgtm, w/ one minor comment. https://codereview.chromium.org/205713004/diff/50001/runtime/bin/vmservice/client/lib/src/service/object.dart File runtime/bin/vmservice/client/lib/src/service/object.dart (right): https://codereview.chromium.org/205713004/diff/50001/runtime/bin/vmservice/client/lib/src/service/object.dart#newcode682 runtime/bin/vmservice/client/lib/src/service/object.dart:682: Extra blank line.
6 years, 9 months ago (2014-03-25 17:52:53 UTC) #4
Cutch
https://codereview.chromium.org/205713004/diff/50001/runtime/bin/vmservice/client/lib/src/service/object.dart File runtime/bin/vmservice/client/lib/src/service/object.dart (right): https://codereview.chromium.org/205713004/diff/50001/runtime/bin/vmservice/client/lib/src/service/object.dart#newcode682 runtime/bin/vmservice/client/lib/src/service/object.dart:682: On 2014/03/25 17:52:53, turnidge wrote: > Extra blank line. ...
6 years, 9 months ago (2014-03-25 18:01:52 UTC) #5
Cutch
6 years, 9 months ago (2014-03-25 18:09:19 UTC) #6
Message was sent while issue was closed.
Committed patchset #5 manually as r34377 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698