network_config_service.h 688 B

1234567891011121314151617181920
  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. #ifndef ASH_PUBLIC_CPP_NETWORK_CONFIG_SERVICE_H_
  5. #define ASH_PUBLIC_CPP_NETWORK_CONFIG_SERVICE_H_
  6. #include "ash/public/cpp/ash_public_export.h"
  7. #include "chromeos/services/network_config/public/mojom/cros_network_config.mojom.h"
  8. #include "mojo/public/cpp/bindings/pending_receiver.h"
  9. namespace ash {
  10. ASH_PUBLIC_EXPORT void GetNetworkConfigService(
  11. mojo::PendingReceiver<chromeos::network_config::mojom::CrosNetworkConfig>
  12. receiver);
  13. } // namespace ash
  14. #endif // ASH_PUBLIC_CPP_NETWORK_CONFIG_SERVICE_H_