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

Side by Side Diff: mojo/public/dart/lib/src/handle.dart

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 part of core; 5 part of core;
6 6
7 class _HandleCreationRecord { 7 class _HandleCreationRecord {
8 final MojoHandle handle; 8 final MojoHandle handle;
9 final StackTrace stack; 9 final StackTrace stack;
10 _HandleCreationRecord(this.handle, this.stack); 10 _HandleCreationRecord(this.handle, this.stack);
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 var handleCreation = MojoHandle._unclosedHandles[handle]; 123 var handleCreation = MojoHandle._unclosedHandles[handle];
124 if (handleCreation != null) { 124 if (handleCreation != null) {
125 print("HANDLE LEAK: handle: $handle, created at:"); 125 print("HANDLE LEAK: handle: $handle, created at:");
126 print("${handleCreation.stack}"); 126 print("${handleCreation.stack}");
127 noleaks = false; 127 noleaks = false;
128 } 128 }
129 } 129 }
130 return noleaks; 130 return noleaks;
131 } 131 }
132 } 132 }
OLDNEW
« no previous file with comments | « mojo/public/dart/lib/src/event_stream.dart ('k') | mojo/public/dart/lib/src/handle_watcher.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698