Set WebKeyboardEvent.domCode on Windows.
[chromium-blink-merge.git] / content / browser / geolocation / wifi_data_provider_win.h
blob49ed704a38c19449dbabbca98856b62dc249636e
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.
5 #ifndef CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_WIN_H_
6 #define CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_WIN_H_
8 #include "content/browser/geolocation/wifi_data_provider_common.h"
9 #include "content/common/content_export.h"
11 namespace content {
13 class CONTENT_EXPORT WifiDataProviderWin : public WifiDataProviderCommon {
14 public:
15 WifiDataProviderWin();
17 private:
18 ~WifiDataProviderWin() override;
20 // WifiDataProviderCommon
21 WlanApiInterface* NewWlanApi() override;
22 WifiPollingPolicy* NewPollingPolicy() override;
24 DISALLOW_COPY_AND_ASSIGN(WifiDataProviderWin);
27 } // namespace content
29 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_WIN_H_