Chromium Code Reviews| Index: mojo/edk/system/async_waiter.cc |
| diff --git a/mojo/edk/system/async_waiter.cc b/mojo/edk/system/async_waiter.cc |
| index 4f539b9cfcfc14f6a257a4767929d7ac3754b00b..c97e9ff6e5aea7ba7a0ed7c46c50a40f14ba340e 100644 |
| --- a/mojo/edk/system/async_waiter.cc |
| +++ b/mojo/edk/system/async_waiter.cc |
| @@ -14,7 +14,7 @@ AsyncWaiter::~AsyncWaiter() { |
| } |
| bool AsyncWaiter::Awake(MojoResult result, uintptr_t context) { |
| - callback_.Run(result); |
| + callback_(result); |
| delete this; |
| return false; |
| } |