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

Unified Diff: components/filesystem/file_system_app.cc

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 | « 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 ceaf1244b2267ffb3c2c010f677271e6a524d27f..58a1a57e3457bff9e97e0635c8e8abe30a70fc75 100644
--- a/components/filesystem/file_system_app.cc
+++ b/components/filesystem/file_system_app.cc
@@ -40,18 +40,18 @@ FileSystemApp::FileSystemApp() : lock_table_(new LockTable) {}
FileSystemApp::~FileSystemApp() {}
-void FileSystemApp::OnStart(const shell::Identity& identity) {
+void FileSystemApp::OnStart(const service_manager::Identity& identity) {
tracing_.Initialize(connector(), identity.name());
}
-bool FileSystemApp::OnConnect(const shell::Identity& remote_identity,
- shell::InterfaceRegistry* registry) {
+bool FileSystemApp::OnConnect(const service_manager::Identity& remote_identity,
+ service_manager::InterfaceRegistry* registry) {
registry->AddInterface<mojom::FileSystem>(this);
return true;
}
// |InterfaceFactory<Files>| implementation:
-void FileSystemApp::Create(const shell::Identity& remote_identity,
+void FileSystemApp::Create(const service_manager::Identity& remote_identity,
mojom::FileSystemRequest request) {
mojo::MakeStrongBinding(base::MakeUnique<FileSystemImpl>(
remote_identity, 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