| Index: runtime/bin/eventhandler.cc
|
| diff --git a/runtime/bin/eventhandler.cc b/runtime/bin/eventhandler.cc
|
| index 8534def6a3881899cd9adaeec16fdbd9aa022e09..14df308e4dad02063d2863641773e37f4b71ad6b 100644
|
| --- a/runtime/bin/eventhandler.cc
|
| +++ b/runtime/bin/eventhandler.cc
|
| @@ -17,10 +17,10 @@ static const intptr_t kNativeEventHandlerFieldIndex = 0;
|
| static EventHandler* GetEventHandler(Dart_Handle handle) {
|
| Dart_Result result = Dart_GetNativeInstanceField(
|
| handle, kNativeEventHandlerFieldIndex);
|
| - assert(Dart_IsValidResult(result));
|
| + ASSERT(Dart_IsValidResult(result));
|
| EventHandler* event_handler =
|
| reinterpret_cast<EventHandler*>(Dart_GetResultAsCIntptr(result));
|
| - assert(event_handler != NULL);
|
| + ASSERT(event_handler != NULL);
|
| return event_handler;
|
| }
|
|
|
|
|