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

Issue 378113002: Improve script display in the observatory. (Closed)

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

Description

Improve script display in the observatory. - <script-inset> now supports scrolling - <script-inset> can now highlight and scroll to the current line - 'args' (#pos=55) are now passed to Panes (and some ObservatoryElements). - <script-view> now scrolls to the current line. - coverage data (red/green) is now shown as the background of the line #. Saves space. Reworked the colors a bit to make black text visible. BUG= R=johnmccutchan@google.com Committed: https://code.google.com/p/dart/source/detail?r=38092

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Total comments: 6

Patch Set 4 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+10162 lines, -9314 lines) Patch
M runtime/bin/vmservice/client/deployed/web/index.html View 1 2 3 7 chunks +69 lines, -19 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js View 1 2 3 589 chunks +4865 lines, -4500 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index_devtools.html View 1 2 3 7 chunks +69 lines, -19 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index_devtools.html_bootstrap.dart.js View 1 2 3 589 chunks +4865 lines, -4500 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/class_view.html View 1 2 3 2 chunks +4 lines, -2 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/function_view.html View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_view.html View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_inset.html View 1 2 3 1 chunk +52 lines, -13 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/script_view.html View 1 2 3 1 chunk +14 lines, -4 lines 0 comments Download
M runtime/bin/vmservice/client/lib/app.dart View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/src/app/application.dart View 1 2 3 5 chunks +36 lines, -31 lines 0 comments Download
A + runtime/bin/vmservice/client/lib/src/app/page.dart View 1 2 3 8 chunks +41 lines, -34 lines 0 comments Download
D runtime/bin/vmservice/client/lib/src/app/pane.dart View 1 2 3 1 chunk +0 lines, -136 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/class_view.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/function_view.html View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/isolate_view.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart View 1 2 3 2 chunks +4 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/script_inset.dart View 1 2 3 5 chunks +56 lines, -27 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/script_inset.html View 1 2 1 chunk +52 lines, -13 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/script_ref.dart View 1 2 1 chunk +1 line, -1 line 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/script_view.html View 1 2 1 chunk +14 lines, -4 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/elements/service_view.dart View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/service/object.dart View 1 2 2 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 5 (0 generated)
turnidge
6 years, 5 months ago (2014-07-09 01:26:23 UTC) #1
Cutch
Very nice change! lgtm with some comments. https://codereview.chromium.org/378113002/diff/20001/runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart File runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart (right): https://codereview.chromium.org/378113002/diff/20001/runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart#newcode18 runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart:18: @published ObservableMap ...
6 years, 5 months ago (2014-07-09 15:49:23 UTC) #2
turnidge
https://codereview.chromium.org/378113002/diff/20001/runtime/bin/vmservice/client/lib/src/elements/script_inset.dart File runtime/bin/vmservice/client/lib/src/elements/script_inset.dart (right): https://codereview.chromium.org/378113002/diff/20001/runtime/bin/vmservice/client/lib/src/elements/script_inset.dart#newcode46 runtime/bin/vmservice/client/lib/src/elements/script_inset.dart:46: var observer = new MutationObserver(_onMutation); On 2014/07/09 15:49:22, Cutch ...
6 years, 5 months ago (2014-07-09 17:36:32 UTC) #3
turnidge
https://codereview.chromium.org/378113002/diff/20001/runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart File runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart (right): https://codereview.chromium.org/378113002/diff/20001/runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart#newcode18 runtime/bin/vmservice/client/lib/src/elements/observatory_element.dart:18: @published ObservableMap args; On 2014/07/09 15:49:22, Cutch wrote: > ...
6 years, 5 months ago (2014-07-09 17:37:08 UTC) #4
turnidge
6 years, 5 months ago (2014-07-09 17:37:59 UTC) #5
Message was sent while issue was closed.
Committed patchset #4 manually as r38092 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698