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

Unified Diff: components/filesystem/file_system_impl.h

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.cc ('k') | components/filesystem/file_system_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/filesystem/file_system_impl.h
diff --git a/components/filesystem/file_system_impl.h b/components/filesystem/file_system_impl.h
index 866a9b8a50d049874f8cf031461305bc80960735..05a2cbeb8139caeb1aa7ad0256d9fd7efdd7c565 100644
--- a/components/filesystem/file_system_impl.h
+++ b/components/filesystem/file_system_impl.h
@@ -26,27 +26,26 @@ class FileSystemApp;
class LockTable;
// The base implementation of FileSystemImpl.
-class FileSystemImpl : public FileSystem {
+class FileSystemImpl : public mojom::FileSystem {
public:
// |persistent_dir| is the directory served to callers of
// |OpenPersistentFileSystem().
FileSystemImpl(shell::Connection* connection,
- mojo::InterfaceRequest<FileSystem> request,
+ mojo::InterfaceRequest<mojom::FileSystem> request,
base::FilePath persistent_dir,
scoped_refptr<LockTable> lock_table);
~FileSystemImpl() override;
// |Files| implementation:
- void OpenTempDirectory(
- mojo::InterfaceRequest<Directory> directory,
- const OpenTempDirectoryCallback& callback) override;
+ void OpenTempDirectory(mojo::InterfaceRequest<mojom::Directory> directory,
+ const OpenTempDirectoryCallback& callback) override;
void OpenPersistentFileSystem(
- mojo::InterfaceRequest<Directory> directory,
+ mojo::InterfaceRequest<mojom::Directory> directory,
const OpenPersistentFileSystemCallback& callback) override;
private:
const std::string remote_application_name_;
- mojo::StrongBinding<FileSystem> binding_;
+ mojo::StrongBinding<mojom::FileSystem> binding_;
scoped_refptr<LockTable> lock_table_;
base::FilePath persistent_dir_;
« no previous file with comments | « components/filesystem/file_system_app.cc ('k') | components/filesystem/file_system_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698