wifi_data_provider_win.h 923 B

1234567891011121314151617181920212223242526272829
  1. // Copyright (c) 2012 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 SERVICES_DEVICE_GEOLOCATION_WIFI_DATA_PROVIDER_WIN_H_
  5. #define SERVICES_DEVICE_GEOLOCATION_WIFI_DATA_PROVIDER_WIN_H_
  6. #include "services/device/geolocation/wifi_data_provider_common.h"
  7. namespace device {
  8. class WifiDataProviderWin : public WifiDataProviderCommon {
  9. public:
  10. WifiDataProviderWin();
  11. WifiDataProviderWin(const WifiDataProviderWin&) = delete;
  12. WifiDataProviderWin& operator=(const WifiDataProviderWin&) = delete;
  13. private:
  14. ~WifiDataProviderWin() override;
  15. // WifiDataProviderCommon implementation
  16. std::unique_ptr<WlanApiInterface> CreateWlanApi() override;
  17. std::unique_ptr<WifiPollingPolicy> CreatePollingPolicy() override;
  18. };
  19. } // namespace device
  20. #endif // SERVICES_DEVICE_GEOLOCATION_WIFI_DATA_PROVIDER_WIN_H_