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

Unified Diff: runtime/bin/vmservice/client/deployed/web/index.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.html
diff --git a/runtime/bin/vmservice/client/deployed/web/index.html b/runtime/bin/vmservice/client/deployed/web/index.html
index 758168da0c33734edab47deb82828401b090909b..f2eb2b51d3cde9c9f8c3895820834234c91dec81 100644
--- a/runtime/bin/vmservice/client/deployed/web/index.html
+++ b/runtime/bin/vmservice/client/deployed/web/index.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>
« no previous file with comments | « runtime/bin/vmservice/client/HACKING.txt ('k') | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698