esim_manager.h 613 B

12345678910111213141516171819
  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. #ifndef ASH_PUBLIC_CPP_ESIM_MANAGER_H_
  5. #define ASH_PUBLIC_CPP_ESIM_MANAGER_H_
  6. #include "ash/public/cpp/ash_public_export.h"
  7. #include "ash/services/cellular_setup/public/mojom/esim_manager.mojom.h"
  8. #include "mojo/public/cpp/bindings/pending_receiver.h"
  9. namespace ash {
  10. ASH_PUBLIC_EXPORT void GetESimManager(
  11. mojo::PendingReceiver<cellular_setup::mojom::ESimManager> receiver);
  12. } // namespace ash
  13. #endif // ASH_PUBLIC_CPP_ESIM_MANAGER_H_