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

Unified Diff: content/public/test/test_service.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/public/test/test_service.h ('k') | content/public/utility/content_utility_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_service.cc
diff --git a/content/public/test/test_service.cc b/content/public/test/test_service.cc
index c0937623e06badfbca98afdb511d20240122fc78..11c3bc7c56982a87f7cd823fa74f46e9c48876cf 100644
--- a/content/public/test/test_service.cc
+++ b/content/public/test/test_service.cc
@@ -21,14 +21,14 @@ TestService::TestService() : service_binding_(this) {
TestService::~TestService() {
}
-bool TestService::OnConnect(const shell::Identity& remote_identity,
- shell::InterfaceRegistry* registry) {
+bool TestService::OnConnect(const service_manager::Identity& remote_identity,
+ service_manager::InterfaceRegistry* registry) {
requestor_name_ = remote_identity.name();
registry->AddInterface<mojom::TestService>(this);
return true;
}
-void TestService::Create(const shell::Identity& remote_identity,
+void TestService::Create(const service_manager::Identity& remote_identity,
mojom::TestServiceRequest request) {
DCHECK(!service_binding_.is_bound());
service_binding_.Bind(std::move(request));
« no previous file with comments | « content/public/test/test_service.h ('k') | content/public/utility/content_utility_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698