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

Unified Diff: runtime/bin/vmservice/observatory/lib/service_io.dart

Issue 773573005: vmservice: basic object graph serialization. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years 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/lib/service_io.dart
===================================================================
--- runtime/bin/vmservice/observatory/lib/service_io.dart (revision 41936)
+++ runtime/bin/vmservice/observatory/lib/service_io.dart (working copy)
@@ -49,7 +49,7 @@
Future<ByteData> nonStringToByteData(dynamic data) {
assert(data is Uint8List);
- print('nonString: ${data.lengthInBytes}, $data');
+ print('nonString: ${data.lengthInBytes}');
Cutch 2014/12/02 16:46:26 Remove this or make it into a log call.
koda 2014/12/02 18:47:12 Done.
return new Future.sync(() =>
new ByteData.view(data.buffer,
data.offsetInBytes,

Powered by Google App Engine
This is Rietveld 408576698