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

Unified Diff: services/shell/public/cpp/lib/service_test.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
Index: services/shell/public/cpp/lib/service_test.cc
diff --git a/services/shell/public/cpp/lib/service_test.cc b/services/shell/public/cpp/lib/service_test.cc
index a78e02ebf413af5ae1f8a4b8992db8407420cff1..30176a18c540779308bdf9135af2a37c149e68c0 100644
--- a/services/shell/public/cpp/lib/service_test.cc
+++ b/services/shell/public/cpp/lib/service_test.cc
@@ -63,16 +63,16 @@ void ServiceTest::SetUp() {
base::MessageLoop::current());
initialize_called_ = run_loop.QuitClosure();
- shell_connection_.reset(new ShellConnection(
+ service_context_.reset(new ServiceContext(
service_.get(),
background_shell_->CreateServiceRequest(test_name_)));
- connector_ = shell_connection_->connector();
+ connector_ = service_context_->connector();
run_loop.Run();
}
void ServiceTest::TearDown() {
- shell_connection_.reset();
+ service_context_.reset();
background_shell_.reset();
message_loop_.reset();
service_.reset();
« no previous file with comments | « services/shell/public/cpp/lib/service_context_ref.cc ('k') | services/shell/public/cpp/lib/shell_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698