| 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();
|
|
|