| Index: components/filesystem/file_system_app.cc
|
| diff --git a/components/filesystem/file_system_app.cc b/components/filesystem/file_system_app.cc
|
| index ba9daad8f3fdef1c2ef7c5196f7370b2baa6dbc6..203c4d2a173987da49292354f561237b6d1c0fa4 100644
|
| --- a/components/filesystem/file_system_app.cc
|
| +++ b/components/filesystem/file_system_app.cc
|
| @@ -12,6 +12,8 @@
|
| #include "mojo/public/cpp/bindings/strong_binding.h"
|
| #include "services/service_manager/public/cpp/connection.h"
|
| #include "services/service_manager/public/cpp/connector.h"
|
| +#include "services/service_manager/public/cpp/interface_registry.h"
|
| +#include "services/service_manager/public/cpp/service_context.h"
|
|
|
| #if defined(OS_WIN)
|
| #include "base/base_paths_win.h"
|
| @@ -40,8 +42,8 @@ FileSystemApp::FileSystemApp() : lock_table_(new LockTable) {}
|
|
|
| FileSystemApp::~FileSystemApp() {}
|
|
|
| -void FileSystemApp::OnStart(const service_manager::ServiceInfo& info) {
|
| - tracing_.Initialize(connector(), info.identity.name());
|
| +void FileSystemApp::OnStart(service_manager::ServiceContext* context) {
|
| + tracing_.Initialize(context->connector(), context->identity().name());
|
| }
|
|
|
| bool FileSystemApp::OnConnect(const service_manager::ServiceInfo& remote_info,
|
|
|