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

Unified Diff: content/public/test/test_service.cc

Issue 2387263002: Rename MojoShellContext -> ServiceManagerContext. (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/test/test_service.mojom » ('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_mojo_app.cc b/content/public/test/test_service.cc
similarity index 57%
rename from content/public/test/test_mojo_app.cc
rename to content/public/test/test_service.cc
index 7d46fb13ea87133eec6081b485e03fa7e56ec127..b46c4b7123b6e17a436eb849586a531ea263a2b6 100644
--- a/content/public/test/test_mojo_app.cc
+++ b/content/public/test/test_service.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/public/test/test_mojo_app.h"
+#include "content/public/test/test_service.h"
#include <utility>
@@ -13,47 +13,46 @@
namespace content {
-const char kTestMojoAppUrl[] = "system:content_mojo_test";
+const char kTestServiceUrl[] = "system:content_test_service";
-TestMojoApp::TestMojoApp() : service_binding_(this) {
+TestService::TestService() : service_binding_(this) {
}
-TestMojoApp::~TestMojoApp() {
+TestService::~TestService() {
}
-bool TestMojoApp::OnConnect(const shell::Identity& remote_identity,
+bool TestService::OnConnect(const shell::Identity& remote_identity,
shell::InterfaceRegistry* registry) {
requestor_name_ = remote_identity.name();
- registry->AddInterface<mojom::TestMojoService>(this);
+ registry->AddInterface<mojom::TestService>(this);
return true;
}
-void TestMojoApp::Create(
- const shell::Identity& remote_identity,
- mojo::InterfaceRequest<mojom::TestMojoService> request) {
+void TestService::Create(const shell::Identity& remote_identity,
+ mojom::TestServiceRequest request) {
DCHECK(!service_binding_.is_bound());
service_binding_.Bind(std::move(request));
}
-void TestMojoApp::DoSomething(const DoSomethingCallback& callback) {
+void TestService::DoSomething(const DoSomethingCallback& callback) {
callback.Run();
base::MessageLoop::current()->QuitWhenIdle();
}
-void TestMojoApp::DoTerminateProcess(
+void TestService::DoTerminateProcess(
const DoTerminateProcessCallback& callback) {
NOTREACHED();
}
-void TestMojoApp::CreateFolder(const CreateFolderCallback& callback) {
+void TestService::CreateFolder(const CreateFolderCallback& callback) {
NOTREACHED();
}
-void TestMojoApp::GetRequestorName(const GetRequestorNameCallback& callback) {
+void TestService::GetRequestorName(const GetRequestorNameCallback& callback) {
callback.Run(requestor_name_);
}
-void TestMojoApp::CreateSharedBuffer(
+void TestService::CreateSharedBuffer(
const std::string& message,
const CreateSharedBufferCallback& callback) {
NOTREACHED();
« no previous file with comments | « content/public/test/test_service.h ('k') | content/public/test/test_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698