| Index: runtime/lib/typed_data.cc
|
| ===================================================================
|
| --- runtime/lib/typed_data.cc (revision 33281)
|
| +++ runtime/lib/typed_data.cc (working copy)
|
| @@ -43,8 +43,10 @@
|
| }
|
|
|
|
|
| - static void PeerFinalizer(Dart_WeakPersistentHandle handle, void* peer) {
|
| - Dart_DeleteWeakPersistentHandle(handle);
|
| +static void PeerFinalizer(Dart_Isolate isolate,
|
| + Dart_WeakPersistentHandle handle,
|
| + void* peer) {
|
| + Dart_DeleteWeakPersistentHandle(isolate, handle);
|
| OS::AlignedFree(peer);
|
| }
|
|
|
|
|