1 // Copyright (c) 2011 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_CHROMEOS_H_
6 #define CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_CHROMEOS_H_
8 #include "base/compiler_specific.h"
9 #include "content/browser/geolocation/wifi_data_provider.h"
10 #include "content/browser/geolocation/wifi_polling_policy.h"
14 class CONTENT_EXPORT WifiDataProviderChromeOs
15 : public WifiDataProviderImplBase
{
17 WifiDataProviderChromeOs();
19 // WifiDataProviderImplBase
20 virtual void StartDataProvider() OVERRIDE
;
21 virtual void StopDataProvider() OVERRIDE
;
22 virtual bool GetData(WifiData
* data
) OVERRIDE
;
25 friend class GeolocationChromeOsWifiDataProviderTest
;
26 virtual ~WifiDataProviderChromeOs();
29 void DoWifiScanTaskOnUIThread(); // The polling task
30 void DoStartTaskOnUIThread();
33 void DidWifiScanTaskNoResults();
34 void DidWifiScanTask(const WifiData
& new_data
);
36 // Will schedule a scan; i.e. enqueue DoWifiScanTask deferred task.
37 void ScheduleNextScan(int interval
);
39 // Will schedule starting of the scanning process.
42 // Will schedule stopping of the scanning process.
45 // Get access point data from chromeos.
46 bool GetAccessPointData(WifiData::AccessPointDataSet
* data
);
48 // Controls the polling update interval. (client thread)
49 scoped_ptr
<WifiPollingPolicy
> polling_policy_
;
51 // The latest wifi data. (client thread)
54 // Whether we have strated the data provider. (client thread)
57 // Whether we've successfully completed a scan for WiFi data. (client thread)
58 bool is_first_scan_complete_
;
60 DISALLOW_COPY_AND_ASSIGN(WifiDataProviderChromeOs
);
63 } // namespace content
65 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_CHROMEOS_H_