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

Unified Diff: content/browser/geolocation/wifi_data_provider_mac.cc

Issue 2192683002: Reland 2:Geolocation: move from content/browser to device/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ignore size_t_to_int truncation warning Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/geolocation/wifi_data_provider_mac.cc
diff --git a/content/browser/geolocation/wifi_data_provider_mac.cc b/content/browser/geolocation/wifi_data_provider_mac.cc
deleted file mode 100644
index ac5a4845527f8e070b56e76d38f623714b10ba78..0000000000000000000000000000000000000000
--- a/content/browser/geolocation/wifi_data_provider_mac.cc
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "content/browser/geolocation/wifi_data_provider_mac.h"
-
-#include "content/browser/geolocation/wifi_data_provider_common.h"
-#include "content/browser/geolocation/wifi_data_provider_manager.h"
-
-namespace content {
-namespace {
-// The time periods, in milliseconds, between successive polls of the wifi data.
-const int kDefaultPollingInterval = 120000; // 2 mins
-const int kNoChangePollingInterval = 300000; // 5 mins
-const int kTwoNoChangePollingInterval = 600000; // 10 mins
-const int kNoWifiPollingIntervalMilliseconds = 20 * 1000; // 20s
-} // namespace
-
-// static
-WifiDataProvider* WifiDataProviderManager::DefaultFactoryFunction() {
- return new WifiDataProviderMac();
-}
-
-WifiDataProviderMac::WifiDataProviderMac() {
-}
-
-WifiDataProviderMac::~WifiDataProviderMac() {
-}
-
-WifiDataProviderMac::WlanApiInterface* WifiDataProviderMac::NewWlanApi() {
- WifiDataProviderMac::WlanApiInterface* core_wlan_api = NewCoreWlanApi();
- if (core_wlan_api)
- return core_wlan_api;
-
- DVLOG(1) << "WifiDataProviderMac : failed to initialize any wlan api";
- return NULL;
-}
-
-WifiPollingPolicy* WifiDataProviderMac::NewPollingPolicy() {
- return new GenericWifiPollingPolicy<kDefaultPollingInterval,
- kNoChangePollingInterval,
- kTwoNoChangePollingInterval,
- kNoWifiPollingIntervalMilliseconds>;
-}
-
-} // namespace content
« no previous file with comments | « content/browser/geolocation/wifi_data_provider_mac.h ('k') | content/browser/geolocation/wifi_data_provider_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698