Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Unified Diff: components/filesystem/file_system_app.cc

Issue 1962503002: Add mojom module suffix in .mojom files for components/filesystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/filesystem/file_system_app.h ('k') | components/filesystem/file_system_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_);
}
« no previous file with comments | « components/filesystem/file_system_app.h ('k') | components/filesystem/file_system_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698