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

Unified Diff: content/shell/utility/shell_content_utility_client.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 | « content/shell/utility/shell_content_utility_client.h ('k') | content/utility/utility_thread_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/utility/shell_content_utility_client.cc
diff --git a/content/shell/utility/shell_content_utility_client.cc b/content/shell/utility/shell_content_utility_client.cc
index 44131d4a45f8acfb58032874206f52861d2be17e..faa732ba753eb48aa5a7ecc810c65b1ded280e82 100644
--- a/content/shell/utility/shell_content_utility_client.cc
+++ b/content/shell/utility/shell_content_utility_client.cc
@@ -66,9 +66,9 @@ class TestServiceImpl : public mojom::TestService {
DISALLOW_COPY_AND_ASSIGN(TestServiceImpl);
};
-std::unique_ptr<shell::Service> CreateTestService(
+std::unique_ptr<service_manager::Service> CreateTestService(
const base::Closure& quit_closure) {
- return std::unique_ptr<shell::Service>(new TestService);
+ return std::unique_ptr<service_manager::Service>(new TestService);
}
} // namespace
@@ -83,7 +83,7 @@ void ShellContentUtilityClient::RegisterServices(StaticServiceMap* services) {
}
void ShellContentUtilityClient::ExposeInterfacesToBrowser(
- shell::InterfaceRegistry* registry) {
+ service_manager::InterfaceRegistry* registry) {
registry->AddInterface(base::Bind(&TestServiceImpl::Create));
}
« no previous file with comments | « content/shell/utility/shell_content_utility_client.h ('k') | content/utility/utility_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698