esim_manager.cc 476 B

12345678910111213141516
  1. // Copyright 2020 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/public/cpp/esim_manager.h"
  5. #include "ash/services/cellular_setup/in_process_esim_manager.h"
  6. namespace ash {
  7. void GetESimManager(
  8. mojo::PendingReceiver<cellular_setup::mojom::ESimManager> receiver) {
  9. cellular_setup::BindToInProcessESimManager(std::move(receiver));
  10. }
  11. } // namespace ash