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

Unified Diff: content/common/mojo/mojo_shell_connection_impl.cc

Issue 2131493002: ShellConnection -> ServiceContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@st
Patch Set: . Created 4 years, 5 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/common/mojo/mojo_shell_connection_impl.h ('k') | content/public/common/mojo_shell_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/mojo/mojo_shell_connection_impl.cc
diff --git a/content/common/mojo/mojo_shell_connection_impl.cc b/content/common/mojo/mojo_shell_connection_impl.cc
index 86bb712f03c471cb3949a36d72d5106b91c7c0bd..5311ba6c4c05221a6b298f39b4a61a334e3c1c66 100644
--- a/content/common/mojo/mojo_shell_connection_impl.cc
+++ b/content/common/mojo/mojo_shell_connection_impl.cc
@@ -10,7 +10,7 @@
#include "base/threading/thread_local.h"
#include "content/common/mojo/embedded_application_runner.h"
#include "services/shell/public/cpp/service.h"
-#include "services/shell/public/cpp/shell_connection.h"
+#include "services/shell/public/cpp/service_context.h"
#include "services/shell/runner/common/client_util.h"
namespace content {
@@ -70,7 +70,7 @@ MojoShellConnection::~MojoShellConnection() {}
MojoShellConnectionImpl::MojoShellConnectionImpl(
shell::mojom::ServiceRequest request)
- : shell_connection_(new shell::ShellConnection(this, std::move(request))) {}
+ : shell_connection_(new shell::ServiceContext(this, std::move(request))) {}
MojoShellConnectionImpl::~MojoShellConnectionImpl() {}
@@ -150,7 +150,7 @@ void MojoShellConnectionImpl::CreateService(
////////////////////////////////////////////////////////////////////////////////
// MojoShellConnectionImpl, MojoShellConnection implementation:
-shell::ShellConnection* MojoShellConnectionImpl::GetShellConnection() {
+shell::ServiceContext* MojoShellConnectionImpl::GetShellConnection() {
return shell_connection_.get();
}
« no previous file with comments | « content/common/mojo/mojo_shell_connection_impl.h ('k') | content/public/common/mojo_shell_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698