| Index: services/tracing/main.cc
|
| diff --git a/services/tracing/main.cc b/services/tracing/main.cc
|
| index aa5dd9117803d82b96bfaab2fa4aad588390ddd2..79b7c4aaf903ad6b27aa62a7d8fdcf6bff7f2df0 100644
|
| --- a/services/tracing/main.cc
|
| +++ b/services/tracing/main.cc
|
| @@ -2,11 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "mojo/public/c/system/main.h"
|
| +#include "services/shell/public/c/main.h"
|
| #include "services/shell/public/cpp/service_runner.h"
|
| #include "services/tracing/tracing_app.h"
|
|
|
| -MojoResult MojoMain(MojoHandle shell_handle) {
|
| +MojoResult ServiceMain(MojoHandle service_request_handle) {
|
| shell::ServiceRunner runner(new tracing::TracingApp);
|
| - return runner.Run(shell_handle);
|
| + return runner.Run(service_request_handle);
|
| }
|
|
|