Index: components/filesystem/file_system_app.cc |
diff --git a/components/filesystem/file_system_app.cc b/components/filesystem/file_system_app.cc |
index 6e444d51e2f0a4b9d4c68a542ef3dfa0f7acd6e0..1b8d0afd623458d18dcc62cf123590eeac171215 100644 |
--- a/components/filesystem/file_system_app.cc |
+++ b/components/filesystem/file_system_app.cc |
@@ -46,13 +46,13 @@ void FileSystemApp::Initialize(shell::Connector* connector, |
} |
bool FileSystemApp::AcceptConnection(shell::Connection* connection) { |
- connection->AddInterface<FileSystem>(this); |
+ connection->AddInterface<mojom::FileSystem>(this); |
return true; |
} |
// |InterfaceFactory<Files>| implementation: |
void FileSystemApp::Create(shell::Connection* connection, |
- mojo::InterfaceRequest<FileSystem> request) { |
+ mojo::InterfaceRequest<mojom::FileSystem> request) { |
new FileSystemImpl(connection, std::move(request), GetUserDataDir(), |
lock_table_); |
} |