Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: content/browser/geolocation/wifi_data_provider_common.h

Issue 10535157: [WIP] attempt to allow chrome OS to inject its wifi data provider (Closed) Base URL: http://git.chromium.org/chromium/src.git@remove_radio
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 #pragma once 7 #pragma once
8 8
9 #include <assert.h> 9 #include <assert.h>
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "base/string16.h" 14 #include "base/string16.h"
15 #include "base/threading/thread.h" 15 #include "base/threading/thread.h"
16 #include "content/browser/geolocation/device_data_provider.h" 16 #include "content/browser/geolocation/wifi_data_provider.h"
17 #include "content/common/content_export.h" 17 #include "content/common/content_export.h"
18 18
19 // Converts a MAC address stored as an array of uint8 to a string. 19 // Converts a MAC address stored as an array of uint8 to a string.
20 string16 MacAddressAsString16(const uint8 mac_as_int[6]); 20 string16 MacAddressAsString16(const uint8 mac_as_int[6]);
21 21
22 // Allows sharing and mocking of the update polling policy function. 22 // Allows sharing and mocking of the update polling policy function.
23 class PollingPolicyInterface { 23 class PollingPolicyInterface {
24 public: 24 public:
25 virtual ~PollingPolicyInterface() {} 25 virtual ~PollingPolicyInterface() {}
26 // Calculates the new polling interval for wiFi scans, given the previous 26 // Calculates the new polling interval for wiFi scans, given the previous
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // Controls the polling update interval. 118 // Controls the polling update interval.
119 scoped_ptr<PollingPolicyInterface> polling_policy_; 119 scoped_ptr<PollingPolicyInterface> polling_policy_;
120 120
121 // Holder for the tasks which run on the thread; takes care of cleanup. 121 // Holder for the tasks which run on the thread; takes care of cleanup.
122 base::WeakPtrFactory<WifiDataProviderCommon> weak_factory_; 122 base::WeakPtrFactory<WifiDataProviderCommon> weak_factory_;
123 123
124 DISALLOW_COPY_AND_ASSIGN(WifiDataProviderCommon); 124 DISALLOW_COPY_AND_ASSIGN(WifiDataProviderCommon);
125 }; 125 };
126 126
127 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_ 127 #endif // CONTENT_BROWSER_GEOLOCATION_WIFI_DATA_PROVIDER_COMMON_H_
OLDNEW
« no previous file with comments | « content/browser/geolocation/wifi_data_provider.cc ('k') | content/browser/geolocation/wifi_data_provider_common_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698