Rename Animate as Begin(Main)Frame
[chromium-blink-merge.git] / content / browser / geolocation / wifi_data_provider_win.h
blobc39bd580a79efff85205127f3b2e60191619559f
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 Win32WifiDataProvider : public WifiDataProviderCommon {
14 public:
15 Win32WifiDataProvider();
17 private:
18 virtual ~Win32WifiDataProvider();
20 // WifiDataProviderCommon
21 virtual WlanApiInterface* NewWlanApi();
22 virtual WifiPollingPolicy* NewPollingPolicy();
24 DISALLOW_COPY_AND_ASSIGN(Win32WifiDataProvider);
27 } // namespace content
29 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_WIN_H_