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/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
15 #include "content/browser/geolocation/device_data_provider.h" | 15 #include "content/browser/geolocation/device_data_provider.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 string16 MacAddressAsString16(const uint8 mac_as_int[6]); | 21 string16 MacAddressAsString16(const uint8 mac_as_int[6]); |
22 | 22 |
23 // Allows sharing and mocking of the update polling policy function. | 23 // Allows sharing and mocking of the update polling policy function. |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 121 |
122 // Holder for the tasks which run on the thread; takes care of cleanup. | 122 // Holder for the tasks which run on the thread; takes care of cleanup. |
123 base::WeakPtrFactory<WifiDataProviderCommon> weak_factory_; | 123 base::WeakPtrFactory<WifiDataProviderCommon> weak_factory_; |
124 | 124 |
125 DISALLOW_COPY_AND_ASSIGN(WifiDataProviderCommon); | 125 DISALLOW_COPY_AND_ASSIGN(WifiDataProviderCommon); |
126 }; | 126 }; |
127 | 127 |
128 } // namespace content | 128 } // namespace content |
129 | 129 |
130 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ | 130 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ |
OLD | NEW |