| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |