| Index: components/filesystem/file_system_app.cc
|
| diff --git a/components/filesystem/file_system_app.cc b/components/filesystem/file_system_app.cc
|
| index 58a1a57e3457bff9e97e0635c8e8abe30a70fc75..ba9daad8f3fdef1c2ef7c5196f7370b2baa6dbc6 100644
|
| --- a/components/filesystem/file_system_app.cc
|
| +++ b/components/filesystem/file_system_app.cc
|
| @@ -40,11 +40,11 @@ FileSystemApp::FileSystemApp() : lock_table_(new LockTable) {}
|
|
|
| FileSystemApp::~FileSystemApp() {}
|
|
|
| -void FileSystemApp::OnStart(const service_manager::Identity& identity) {
|
| - tracing_.Initialize(connector(), identity.name());
|
| +void FileSystemApp::OnStart(const service_manager::ServiceInfo& info) {
|
| + tracing_.Initialize(connector(), info.identity.name());
|
| }
|
|
|
| -bool FileSystemApp::OnConnect(const service_manager::Identity& remote_identity,
|
| +bool FileSystemApp::OnConnect(const service_manager::ServiceInfo& remote_info,
|
| service_manager::InterfaceRegistry* registry) {
|
| registry->AddInterface<mojom::FileSystem>(this);
|
| return true;
|
|
|