| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/geolocation/gps_location_provider_linux.h" | 5 #include "content/browser/geolocation/gps_location_provider_linux.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 |
| 9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 10 #include "base/logging.h" | 11 #include "base/logging.h" |
| 11 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 12 #include "chrome/browser/geolocation/libgps_wrapper_linux.h" | 13 #include "content/browser/geolocation/libgps_wrapper_linux.h" |
| 13 | 14 |
| 14 namespace { | 15 namespace { |
| 15 const int kGpsdReconnectRetryIntervalMillis = 10 * 1000; | 16 const int kGpsdReconnectRetryIntervalMillis = 10 * 1000; |
| 16 // As per http://gpsd.berlios.de/performance.html#id374524, poll twice per sec. | 17 // As per http://gpsd.berlios.de/performance.html#id374524, poll twice per sec. |
| 17 const int kPollPeriodMovingMillis = 500; | 18 const int kPollPeriodMovingMillis = 500; |
| 18 // Poll less frequently whilst stationary. | 19 // Poll less frequently whilst stationary. |
| 19 const int kPollPeriodStationaryMillis = kPollPeriodMovingMillis * 3; | 20 const int kPollPeriodStationaryMillis = kPollPeriodMovingMillis * 3; |
| 20 // GPS reading must differ by more than this amount to be considered movement. | 21 // GPS reading must differ by more than this amount to be considered movement. |
| 21 const int kMovementThresholdMeters = 20; | 22 const int kMovementThresholdMeters = 20; |
| 22 | 23 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 task_factory_.RevokeAll(); | 118 task_factory_.RevokeAll(); |
| 118 MessageLoop::current()->PostDelayedTask( | 119 MessageLoop::current()->PostDelayedTask( |
| 119 FROM_HERE, | 120 FROM_HERE, |
| 120 task_factory_.NewRunnableMethod(&GpsLocationProviderLinux::DoGpsPollTask), | 121 task_factory_.NewRunnableMethod(&GpsLocationProviderLinux::DoGpsPollTask), |
| 121 interval); | 122 interval); |
| 122 } | 123 } |
| 123 | 124 |
| 124 LocationProviderBase* NewSystemLocationProvider() { | 125 LocationProviderBase* NewSystemLocationProvider() { |
| 125 return new GpsLocationProviderLinux(LibGps::New); | 126 return new GpsLocationProviderLinux(LibGps::New); |
| 126 } | 127 } |
| OLD | NEW |