1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "mojo/public/cpp/application/lib/service_connector.h"
10 ServiceConnectorBase::Owner::Owner() {}
12 ServiceConnectorBase::Owner::Owner(
13 ScopedMessagePipeHandle service_provider_handle
) {
14 service_provider_
.Bind(service_provider_handle
.Pass());
15 service_provider_
.set_client(this);
18 ServiceConnectorBase::Owner::~Owner() {}
20 ServiceConnectorBase::~ServiceConnectorBase() {}
22 } // namespace internal