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

Unified Diff: services/file/file_service.h

Issue 2420253002: Rename shell namespace to service_manager (Closed)
Patch Set: . Created 4 years, 2 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/reader.cc ('k') | services/file/file_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/file/file_service.h
diff --git a/services/file/file_service.h b/services/file/file_service.h
index caad036614ffe11c80eade704ca03c6bee09930e..6ec9e1e8e1557d1c7cd2e60d0c0ede144972b04d 100644
--- a/services/file/file_service.h
+++ b/services/file/file_service.h
@@ -16,15 +16,15 @@
namespace file {
-std::unique_ptr<shell::Service> CreateFileService(
+std::unique_ptr<service_manager::Service> CreateFileService(
scoped_refptr<base::SingleThreadTaskRunner> file_service_runner,
scoped_refptr<base::SingleThreadTaskRunner> leveldb_service_runner,
const base::Closure& quit_closure);
class FileService
- : public shell::Service,
- public shell::InterfaceFactory<mojom::FileSystem>,
- public shell::InterfaceFactory<leveldb::mojom::LevelDBService> {
+ : public service_manager::Service,
+ public service_manager::InterfaceFactory<mojom::FileSystem>,
+ public service_manager::InterfaceFactory<leveldb::mojom::LevelDBService> {
public:
FileService(
scoped_refptr<base::SingleThreadTaskRunner> file_service_runner,
@@ -33,16 +33,16 @@ class FileService
private:
// |Service| override:
- void OnStart(const shell::Identity& identity) override;
- bool OnConnect(const shell::Identity& remote_identity,
- shell::InterfaceRegistry* registry) override;
+ void OnStart(const service_manager::Identity& identity) override;
+ bool OnConnect(const service_manager::Identity& remote_identity,
+ service_manager::InterfaceRegistry* registry) override;
// |InterfaceFactory<mojom::FileSystem>| implementation:
- void Create(const shell::Identity& remote_identity,
+ void Create(const service_manager::Identity& remote_identity,
mojom::FileSystemRequest request) override;
// |InterfaceFactory<LevelDBService>| implementation:
- void Create(const shell::Identity& remote_identity,
+ void Create(const service_manager::Identity& remote_identity,
leveldb::mojom::LevelDBServiceRequest request) override;
void OnLevelDBServiceError();
« no previous file with comments | « services/catalog/reader.cc ('k') | services/file/file_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698