blob: 7c3b4f0ef6707c1cc2d76dd356dc55b66dfc6f68 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/services/secure_channel/secure_channel_base.h"
namespace chromeos {
namespace secure_channel {
SecureChannelBase::SecureChannelBase() = default;
SecureChannelBase::~SecureChannelBase() = default;
void SecureChannelBase::BindRequest(mojom::SecureChannelRequest request) {
bindings_.AddBinding(this, std::move(request));
}
} // namespace secure_channel
} // namespace chromeos