privileged_host_device_setter_base.cc 676 B

12345678910111213141516171819202122
  1. // Copyright 2018 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.
  4. #include "ash/services/multidevice_setup/privileged_host_device_setter_base.h"
  5. namespace ash {
  6. namespace multidevice_setup {
  7. PrivilegedHostDeviceSetterBase::PrivilegedHostDeviceSetterBase() = default;
  8. PrivilegedHostDeviceSetterBase::~PrivilegedHostDeviceSetterBase() = default;
  9. void PrivilegedHostDeviceSetterBase::BindReceiver(
  10. mojo::PendingReceiver<mojom::PrivilegedHostDeviceSetter> receiver) {
  11. receivers_.Add(this, std::move(receiver));
  12. }
  13. } // namespace multidevice_setup
  14. } // namespace ash