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

Unified Diff: services/catalog/catalog.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 | « services/catalog/catalog.h ('k') | services/catalog/manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/catalog/catalog.cc
diff --git a/services/catalog/catalog.cc b/services/catalog/catalog.cc
index 50723deff4c21cd0564df14df703680e29e9feb5..52b7361992d1f5bc0558b3d4fd253d737314b1a3 100644
--- a/services/catalog/catalog.cc
+++ b/services/catalog/catalog.cc
@@ -106,7 +106,7 @@ void Catalog::ScanSystemPackageDir() {
bool Catalog::AcceptConnection(shell::Connection* connection) {
connection->AddInterface<mojom::Catalog>(this);
- connection->AddInterface<filesystem::Directory>(this);
+ connection->AddInterface<filesystem::mojom::Directory>(this);
connection->AddInterface<shell::mojom::ShellResolver>(this);
return true;
}
@@ -126,7 +126,7 @@ void Catalog::Create(shell::Connection* connection,
}
void Catalog::Create(shell::Connection* connection,
- filesystem::DirectoryRequest request) {
+ filesystem::mojom::DirectoryRequest request) {
if (!lock_table_)
lock_table_ = new filesystem::LockTable;
base::FilePath resources_path =
« no previous file with comments | « services/catalog/catalog.h ('k') | services/catalog/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698