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

Unified Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.html

Issue 300883002: Add Proces owner of socket and fix printing of non-network sockets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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/client/deployed/web/index_devtools.html
diff --git a/runtime/bin/vmservice/client/deployed/web/index_devtools.html b/runtime/bin/vmservice/client/deployed/web/index_devtools.html
index d6c5e1a2b3e1e3eab20885ef1bfc37b7b939aaf5..7d63ebaae7be0235451c9e5183cfe622f4ef0eec 100644
--- a/runtime/bin/vmservice/client/deployed/web/index_devtools.html
+++ b/runtime/bin/vmservice/client/deployed/web/index_devtools.html
@@ -6437,6 +6437,9 @@ hr {
<template if="{{ ref.serviceType == 'WebSocket' }}">
<io-web-socket-ref ref="{{ ref }}"></io-web-socket-ref>
</template>
+ <template if="{{ ref.serviceType == 'Process' }}">
+ <io-process-ref ref="{{ ref }}"></io-process-ref>
+ </template>
</template>
</polymer-element>
@@ -10317,6 +10320,30 @@ hr {
<div class="memberName">Working Directory</div>
<div class="memberValue">{{ process['workingDirectory'] }}</div>
</div>
+ <template if="{{ process['stdin'] != null }}">
+ <div class="memberItem">
+ <div class="memberName">stdin</div>
+ <div class="memberValue">
+ <io-socket-ref ref="{{ process['stdin'] }}"></io-socket-ref>
+ </div>
+ </div>
+ </template>
+ <template if="{{ process['stdout'] != null }}">
+ <div class="memberItem">
+ <div class="memberName">stdout</div>
+ <div class="memberValue">
+ <io-socket-ref ref="{{ process['stdout'] }}"></io-socket-ref>
+ </div>
+ </div>
+ </template>
+ <template if="{{ process['stderr'] != null }}">
+ <div class="memberItem">
+ <div class="memberName">stderr</div>
+ <div class="memberValue">
+ <io-socket-ref ref="{{ process['stderr'] }}"></io-socket-ref>
+ </div>
+ </div>
+ </template>
</div>
<br>

Powered by Google App Engine
This is Rietveld 408576698