| Index: services/shell/runner/host/native_application_support.cc
|
| diff --git a/services/shell/runner/host/native_application_support.cc b/services/shell/runner/host/native_application_support.cc
|
| index c06ecd0a35b47b2e3c64445bc5194866814141a6..945176ba651d8f19fa7beed85ab62627c8dd8356 100644
|
| --- a/services/shell/runner/host/native_application_support.cc
|
| +++ b/services/shell/runner/host/native_application_support.cc
|
| @@ -10,8 +10,7 @@
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util.h"
|
| #include "base/logging.h"
|
| -#include "mojo/edk/embedder/entrypoints.h"
|
| -#include "mojo/public/c/system/thunks.h"
|
| +#include "mojo/public/platform/native/system_thunks.h"
|
|
|
| namespace shell {
|
|
|
| @@ -57,8 +56,7 @@
|
| // Thunks aren't needed/used in component build, since the thunked methods
|
| // just live in their own dynamically loaded library.
|
| #if !defined(COMPONENT_BUILD)
|
| - if (!SetThunks(&mojo::edk::MakeSystemThunks, "MojoSetSystemThunks",
|
| - app_library)) {
|
| + if (!SetThunks(&MojoMakeSystemThunks, "MojoSetSystemThunks", app_library)) {
|
| LOG(ERROR) << "MojoSetSystemThunks not found";
|
| return false;
|
| }
|
|
|