Temporarily re-enabling SizeAfterPrefChange test with traces.
[chromium-blink-merge.git] / mojo / public / cpp / application / lib / service_connector.cc
blob3c53be011b900944a93884671365c60a83845532
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"
7 namespace mojo {
8 namespace internal {
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
23 } // namespace mojo