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

Unified Diff: runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/io_view.html

Issue 515303005: Allow observatory to distinguish between user-level and vm-level types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js, fix test Created 6 years, 4 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/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/io_view.html
diff --git a/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/io_view.html b/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/io_view.html
index 939e0b790947a180ba5c48eaa221dbec8d36cbf1..40724042598906893638b878379966d615256822 100644
--- a/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/io_view.html
+++ b/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/io_view.html
@@ -52,7 +52,7 @@
<ul class="list-group">
<li class="list-group-item">
- <a on-click="{{ goto }}" _href="{{gotoLink(io.isolate.relativeLink('io/processes'))}}">Processess</a>
+ <a on-click="{{ goto }}" _href="{{gotoLink(io.isolate.relativeLink('io/processes'))}}">Processes</a>
</li>
</ul>
@@ -65,19 +65,19 @@
<polymer-element name="io-ref" extends="service-ref">
<template>
<link rel="stylesheet" href="css/shared.css">
- <template if="{{ ref.serviceType == 'Socket' }}">
+ <template if="{{ ref.type == 'Socket' }}">
<io-socket-ref ref="{{ ref }}"></io-socket-ref>
</template>
- <template if="{{ ref.serviceType == 'HttpServerConnection' }}">
+ <template if="{{ ref.type == 'HttpServerConnection' }}">
<io-http-server-connection-ref ref="{{ ref }}"></io-http-server-connection-ref>
</template>
- <template if="{{ ref.serviceType == 'HttpServer' }}">
+ <template if="{{ ref.type == 'HttpServer' }}">
<io-http-server-ref ref="{{ ref }}"></io-http-server-ref>
</template>
- <template if="{{ ref.serviceType == 'WebSocket' }}">
+ <template if="{{ ref.type == 'WebSocket' }}">
<io-web-socket-ref ref="{{ ref }}"></io-web-socket-ref>
</template>
- <template if="{{ ref.serviceType == 'Process' }}">
+ <template if="{{ ref.type == 'Process' }}">
<io-process-ref ref="{{ ref }}"></io-process-ref>
</template>
</template>

Powered by Google App Engine
This is Rietveld 408576698