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

Issue 221263002: Miscellaneous Observatory UI improvements (Closed)

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

Description

Miscellaneous Observatory UI improvements Update cursor over expander in profiler Ressurect json-view Show arrow in profiler tree Clicking on <code-ref> link in profiler doesn't expand tree <code-ref> only shows a link for Dart code Port script-view to use script-inset Add function source to function view Add counters to isolate view Add counters to isolate summary R=turnidge@google.com Committed: https://code.google.com/p/dart/source/detail?r=34661

Patch Set 1 #

Total comments: 28

Patch Set 2 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+11417 lines, -11352 lines) Patch
M runtime/bin/vmservice/client/deployed/web/index.html View 1 12 chunks +85 lines, -105 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js View 1 512 chunks +5457 lines, -5443 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index_devtools.html View 1 12 chunks +85 lines, -105 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index_devtools.html_bootstrap.dart.js View 1 512 chunks +5457 lines, -5443 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/code_ref.html View 1 1 chunk +9 lines, -4 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/function_view.html View 1 2 chunks +7 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_profile.html View 1 1 chunk +1 line, -0 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_summary.html View 1 3 chunks +7 lines, -29 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_view.html View 1 2 chunks +11 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/json_view.html View 1 1 chunk +6 lines, -28 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_inset.html View 1 1 chunk +23 lines, -9 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_view.html View 1 2 chunks +4 lines, -16 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/app/view_model.dart View 1 2 chunks +7 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/code_ref.dart View 1 1 chunk +8 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/code_ref.html View 1 1 chunk +9 lines, -4 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/function_view.html View 2 chunks +7 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/isolate_profile.dart View 1 1 chunk +7 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/isolate_profile.html View 1 chunk +1 line, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html View 1 3 chunks +7 lines, -29 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/isolate_view.html View 1 2 chunks +11 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/json_view.dart View 1 1 chunk +73 lines, -38 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/json_view.html View 1 1 chunk +6 lines, -28 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/script_inset.dart View 1 2 chunks +40 lines, -4 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/script_inset.html View 1 1 chunk +23 lines, -9 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/script_view.dart View 3 chunks +5 lines, -29 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/script_view.html View 1 2 chunks +4 lines, -16 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/service_view.dart View 1 chunk +3 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/src/service/object.dart View 1 11 chunks +50 lines, -8 lines 0 comments Download
M runtime/vm/isolate.cc View 1 chunk +4 lines, -1 line 0 comments Download

Messages

Total messages: 4 (0 generated)
Cutch
6 years, 8 months ago (2014-04-01 18:43:56 UTC) #1
turnidge
lgtm, with comments. Nice changes. https://codereview.chromium.org/221263002/diff/1/runtime/bin/vmservice/client/lib/src/app/view_model.dart File runtime/bin/vmservice/client/lib/src/app/view_model.dart (right): https://codereview.chromium.org/221263002/diff/1/runtime/bin/vmservice/client/lib/src/app/view_model.dart#newcode14 runtime/bin/vmservice/client/lib/src/app/view_model.dart:14: @observable String expander = ...
6 years, 8 months ago (2014-04-01 19:42:48 UTC) #2
Cutch
https://codereview.chromium.org/221263002/diff/1/runtime/bin/vmservice/client/lib/src/app/view_model.dart File runtime/bin/vmservice/client/lib/src/app/view_model.dart (right): https://codereview.chromium.org/221263002/diff/1/runtime/bin/vmservice/client/lib/src/app/view_model.dart#newcode14 runtime/bin/vmservice/client/lib/src/app/view_model.dart:14: @observable String expander = arrowRight; On 2014/04/01 19:42:48, turnidge ...
6 years, 8 months ago (2014-04-02 18:26:51 UTC) #3
Cutch
6 years, 8 months ago (2014-04-02 18:30:14 UTC) #4
Message was sent while issue was closed.
Committed patchset #2 manually as r34661 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698