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

Unified Diff: components/filesystem/file_system_app.h

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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/bitmap_uploader/bitmap_uploader.cc ('k') | components/filesystem/file_system_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/filesystem/file_system_app.h
diff --git a/components/filesystem/file_system_app.h b/components/filesystem/file_system_app.h
index 62b2c706ecc37e8cd3a9cffdc2ad2b3b1ea56c86..fa3e2d926a4c5f5704f5d8d3ebafa3e6e99bdafb 100644
--- a/components/filesystem/file_system_app.h
+++ b/components/filesystem/file_system_app.h
@@ -20,8 +20,8 @@ class Connector;
namespace filesystem {
-class FileSystemApp : public mojo::ShellClient,
- public mojo::InterfaceFactory<FileSystem> {
+class FileSystemApp : public shell::ShellClient,
+ public shell::InterfaceFactory<FileSystem> {
public:
FileSystemApp();
~FileSystemApp() override;
@@ -30,12 +30,13 @@ class FileSystemApp : public mojo::ShellClient,
// Gets the system specific toplevel profile directory.
static base::FilePath GetUserDataDir();
- // |mojo::ShellClient| override:
- void Initialize(mojo::Connector* connector, const mojo::Identity& identity,
+ // |shell::ShellClient| override:
+ void Initialize(shell::Connector* connector,
+ const shell::Identity& identity,
uint32_t id) override;
- bool AcceptConnection(mojo::Connection* connection) override;
+ bool AcceptConnection(shell::Connection* connection) override;
// |InterfaceFactory<Files>| implementation:
- void Create(mojo::Connection* connection,
+ void Create(shell::Connection* connection,
mojo::InterfaceRequest<FileSystem> request) override;
mojo::TracingImpl tracing_;
« no previous file with comments | « components/bitmap_uploader/bitmap_uploader.cc ('k') | components/filesystem/file_system_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698