cellular_setup_base.cc 546 B

123456789101112131415161718
  1. // Copyright 2019 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/cellular_setup/cellular_setup_base.h"
  5. namespace ash::cellular_setup {
  6. CellularSetupBase::CellularSetupBase() = default;
  7. CellularSetupBase::~CellularSetupBase() = default;
  8. void CellularSetupBase::BindReceiver(
  9. mojo::PendingReceiver<mojom::CellularSetup> receiver) {
  10. receivers_.Add(this, std::move(receiver));
  11. }
  12. } // namespace ash::cellular_setup