| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ | 5 #ifndef CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ |
| 6 #define CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ | 6 #define CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ |
| 7 | 7 |
| 8 #include <assert.h> | 8 #include <assert.h> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "content/browser/geolocation/wifi_data_provider.h" | 14 #include "content/browser/geolocation/wifi_data_provider.h" |
| 15 #include "content/browser/geolocation/wifi_polling_policy.h" | 15 #include "content/browser/geolocation/wifi_polling_policy.h" |
| 16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 | 19 |
| 20 // Converts a MAC address stored as an array of uint8 to a string. | 20 // Converts a MAC address stored as an array of uint8 to a string. |
| 21 base::string16 MacAddressAsString16(const uint8 mac_as_int[6]); | 21 base::string16 MacAddressAsString16(const uint8 mac_as_int[6]); |
| 22 | 22 |
| 23 // Base class to promote code sharing between platform specific wifi data | 23 // Base class to promote code sharing between platform specific wifi data |
| 24 // providers. It's optional for specific platforms to derive this, but if they | 24 // providers. It's optional for specific platforms to derive this, but if they |
| 25 // do polling behavior is taken care of by this base class, and all the platform | 25 // do polling behavior is taken care of by this base class, and all the platform |
| 26 // need do is provide the underlying WLAN access API and polling policy. | 26 // need do is provide the underlying WLAN access API and polling policy. |
| 27 // Also designed this way for ease of testing the cross-platform behavior. | 27 // Also designed this way for ease of testing the cross-platform behavior. |
| 28 class CONTENT_EXPORT WifiDataProviderCommon : public WifiDataProviderImplBase { | 28 class CONTENT_EXPORT WifiDataProviderCommon : public WifiDataProvider { |
| 29 public: | 29 public: |
| 30 // Interface to abstract the low level data OS library call, and to allow | 30 // Interface to abstract the low level data OS library call, and to allow |
| 31 // mocking (hence public). | 31 // mocking (hence public). |
| 32 class WlanApiInterface { | 32 class WlanApiInterface { |
| 33 public: | 33 public: |
| 34 virtual ~WlanApiInterface() {} | 34 virtual ~WlanApiInterface() {} |
| 35 // Gets wifi data for all visible access points. | 35 // Gets wifi data for all visible access points. |
| 36 virtual bool GetAccessPointData(WifiData::AccessPointDataSet* data) = 0; | 36 virtual bool GetAccessPointData(WifiData::AccessPointDataSet* data) = 0; |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 WifiDataProviderCommon(); | 39 WifiDataProviderCommon(); |
| 40 | 40 |
| 41 // WifiDataProviderImplBase implementation | 41 // WifiDataProvider implementation |
| 42 virtual void StartDataProvider() OVERRIDE; | 42 virtual void StartDataProvider() OVERRIDE; |
| 43 virtual void StopDataProvider() OVERRIDE; | 43 virtual void StopDataProvider() OVERRIDE; |
| 44 virtual bool GetData(WifiData* data) OVERRIDE; | 44 virtual bool GetData(WifiData* data) OVERRIDE; |
| 45 | 45 |
| 46 protected: | 46 protected: |
| 47 virtual ~WifiDataProviderCommon(); | 47 virtual ~WifiDataProviderCommon(); |
| 48 | 48 |
| 49 // Returns ownership. | 49 // Returns ownership. |
| 50 virtual WlanApiInterface* NewWlanApi() = 0; | 50 virtual WlanApiInterface* NewWlanApi() = 0; |
| 51 | 51 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 72 | 72 |
| 73 // Holder for delayed tasks; takes care of cleanup. | 73 // Holder for delayed tasks; takes care of cleanup. |
| 74 base::WeakPtrFactory<WifiDataProviderCommon> weak_factory_; | 74 base::WeakPtrFactory<WifiDataProviderCommon> weak_factory_; |
| 75 | 75 |
| 76 DISALLOW_COPY_AND_ASSIGN(WifiDataProviderCommon); | 76 DISALLOW_COPY_AND_ASSIGN(WifiDataProviderCommon); |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace content | 79 } // namespace content |
| 80 | 80 |
| 81 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ | 81 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ |
| OLD | NEW |