network_config_service.cc 527 B

1234567891011121314151617
  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/public/cpp/network_config_service.h"
  5. #include "chromeos/services/network_config/in_process_instance.h"
  6. namespace ash {
  7. void GetNetworkConfigService(
  8. mojo::PendingReceiver<chromeos::network_config::mojom::CrosNetworkConfig>
  9. receiver) {
  10. chromeos::network_config::BindToInProcessInstance(std::move(receiver));
  11. }
  12. } // namespace ash