Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / content / browser / geolocation / wifi_data_provider_chromeos.h
blob895d06eaf317ea05a4976c62a3f8fabb6b1d2ce1
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"
12 namespace content {
14 class CONTENT_EXPORT WifiDataProviderChromeOs
15 : public WifiDataProviderImplBase {
16 public:
17 WifiDataProviderChromeOs();
19 // WifiDataProviderImplBase
20 virtual void StartDataProvider() OVERRIDE;
21 virtual void StopDataProvider() OVERRIDE;
22 virtual bool GetData(WifiData* data) OVERRIDE;
24 private:
25 friend class GeolocationChromeOsWifiDataProviderTest;
26 virtual ~WifiDataProviderChromeOs();
28 // UI thread
29 void DoWifiScanTaskOnUIThread(); // The polling task
30 void DoStartTaskOnUIThread();
32 // Client thread
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.
40 void ScheduleStart();
42 // Will schedule stopping of the scanning process.
43 void ScheduleStop();
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)
52 WifiData wifi_data_;
54 // Whether we have strated the data provider. (client thread)
55 bool started_;
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_