| Index: mojo/edk/system/core.h
|
| diff --git a/mojo/edk/system/core.h b/mojo/edk/system/core.h
|
| index c8a47e0f8af3af3c6d0f52f194eeab83afc3d837..7217888f14c81d2b5af980b1cb48083d6c9b0d2a 100644
|
| --- a/mojo/edk/system/core.h
|
| +++ b/mojo/edk/system/core.h
|
| @@ -7,7 +7,8 @@
|
|
|
| #include <stdint.h>
|
|
|
| -#include "base/callback.h"
|
| +#include <functional>
|
| +
|
| #include "mojo/edk/system/handle_table.h"
|
| #include "mojo/edk/system/mapping_table.h"
|
| #include "mojo/edk/system/memory.h"
|
| @@ -66,7 +67,7 @@ class Core {
|
| // awakable.h. In particular, it must not call any Mojo system functions.
|
| MojoResult AsyncWait(MojoHandle handle,
|
| MojoHandleSignals signals,
|
| - const base::Callback<void(MojoResult)>& callback);
|
| + const std::function<void(MojoResult)>& callback);
|
|
|
| embedder::PlatformSupport* platform_support() const {
|
| return platform_support_;
|
|
|