| Index: components/font_service/main.cc
|
| diff --git a/components/font_service/main.cc b/components/font_service/main.cc
|
| index e2716c77e5b81a9aa4b03c5fb397be64e696e6f3..ee9e55b99a1e4f1ab165fc826c7c5e5eae72345c 100644
|
| --- a/components/font_service/main.cc
|
| +++ b/components/font_service/main.cc
|
| @@ -3,10 +3,10 @@
|
| // found in the LICENSE file.
|
|
|
| #include "components/font_service/font_service_app.h"
|
| -#include "mojo/public/c/system/main.h"
|
| +#include "services/shell/public/c/main.h"
|
| #include "services/shell/public/cpp/service_runner.h"
|
|
|
| -MojoResult MojoMain(MojoHandle shell_handle) {
|
| +MojoResult ServiceMain(MojoHandle service_request_handle) {
|
| shell::ServiceRunner runner(new font_service::FontServiceApp);
|
| - return runner.Run(shell_handle);
|
| + return runner.Run(service_request_handle);
|
| }
|
|
|