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

Issue 560503002: Add support for TokenStream, LocalVarDescriptors, and PcDescriptors to service lib and generic obje… (Closed)

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

Description

Add support for TokenStream, LocalVarDescriptors, and PcDescriptors to service lib Add generic 'Object' ref and view element. This will work for any ServiceObject with type == 'Object'. Ref element uses the vmType as the link text if there is no name. View element is mostly just <object-common> but that allows calculating retaining path, retained size, etc. BUG= R=rmacnak@google.com, turnidge@google.com Committed: https://code.google.com/p/dart/source/detail?r=40119

Patch Set 1 #

Total comments: 14

Patch Set 2 : #

Patch Set 3 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+11869 lines, -10288 lines) Patch
M runtime/bin/vmservice/observatory/deployed/web/index.html View 1 2 11 chunks +1040 lines, -478 lines 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/index.html._data View 1 2 1 chunk +1 line, -1 line 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/index.html_bootstrap.dart.js View 1 2 826 chunks +4755 lines, -4649 lines 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/index_devtools.html View 1 2 11 chunks +1040 lines, -478 lines 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/index_devtools.html._data View 1 2 1 chunk +1 line, -1 line 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/index_devtools.html_bootstrap.dart.js View 1 2 826 chunks +4755 lines, -4649 lines 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/packages/observatory/elements.html View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/object_common.html View 1 2 1 chunk +13 lines, -4 lines 0 comments Download
A runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/object_view.html View 1 2 1 chunk +32 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/service_ref.html View 1 2 1 chunk +11 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/packages/polymer/polymer.html View 1 2 1 chunk +1 line, -1 line 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/packages/web_components/build.log View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M runtime/bin/vmservice/observatory/deployed/web/packages/web_components/platform.js View 1 2 1 chunk +1 line, -1 line 0 comments Download
M runtime/bin/vmservice/observatory/lib/elements.dart View 1 chunk +2 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/observatory/lib/elements.html View 1 chunk +2 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/observatory/lib/src/elements/context_ref.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M runtime/bin/vmservice/observatory/lib/src/elements/object_common.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M runtime/bin/vmservice/observatory/lib/src/elements/object_common.html View 1 1 chunk +13 lines, -4 lines 0 comments Download
A + runtime/bin/vmservice/observatory/lib/src/elements/object_view.dart View 1 chunk +9 lines, -6 lines 0 comments Download
A runtime/bin/vmservice/observatory/lib/src/elements/object_view.html View 1 chunk +32 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/observatory/lib/src/elements/service_ref.dart View 1 3 chunks +14 lines, -1 line 0 comments Download
M runtime/bin/vmservice/observatory/lib/src/elements/service_ref.html View 1 1 chunk +11 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/observatory/lib/src/elements/service_view.dart View 1 1 chunk +4 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/observatory/lib/src/service/object.dart View 1 6 chunks +113 lines, -7 lines 0 comments Download
M runtime/vm/object.cc View 1 3 chunks +9 lines, -0 lines 0 comments Download

Messages

Total messages: 8 (1 generated)
Cutch
6 years, 3 months ago (2014-09-09 18:50:25 UTC) #2
turnidge
https://codereview.chromium.org/560503002/diff/1/runtime/bin/vmservice/observatory/lib/src/elements/object_common.html File runtime/bin/vmservice/observatory/lib/src/elements/object_common.html (right): https://codereview.chromium.org/560503002/diff/1/runtime/bin/vmservice/observatory/lib/src/elements/object_common.html#newcode30 runtime/bin/vmservice/observatory/lib/src/elements/object_common.html:30: </div> I wonder if these should move to some ...
6 years, 3 months ago (2014-09-09 19:30:25 UTC) #3
rmacnak
https://codereview.chromium.org/560503002/diff/1/runtime/bin/vmservice/observatory/lib/src/elements/object_common.html File runtime/bin/vmservice/observatory/lib/src/elements/object_common.html (right): https://codereview.chromium.org/560503002/diff/1/runtime/bin/vmservice/observatory/lib/src/elements/object_common.html#newcode17 runtime/bin/vmservice/observatory/lib/src/elements/object_common.html:17: <template if="{{ object.clazz != null }}"> An object should ...
6 years, 3 months ago (2014-09-09 20:36:31 UTC) #4
Cutch
PTAL https://codereview.chromium.org/560503002/diff/1/runtime/bin/vmservice/observatory/lib/src/elements/object_common.html File runtime/bin/vmservice/observatory/lib/src/elements/object_common.html (right): https://codereview.chromium.org/560503002/diff/1/runtime/bin/vmservice/observatory/lib/src/elements/object_common.html#newcode17 runtime/bin/vmservice/observatory/lib/src/elements/object_common.html:17: <template if="{{ object.clazz != null }}"> On 2014/09/09 ...
6 years, 3 months ago (2014-09-10 19:59:20 UTC) #5
rmacnak
LGTM
6 years, 3 months ago (2014-09-10 21:10:12 UTC) #6
turnidge
lgtm
6 years, 3 months ago (2014-09-10 21:16:43 UTC) #7
Cutch
6 years, 3 months ago (2014-09-10 21:21:25 UTC) #8
Message was sent while issue was closed.
Committed patchset #3 (id:40001) manually as 40119 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698