| 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 "chrome/browser/geolocation/gps_location_provider_linux.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 task_factory_.RevokeAll(); | 117 task_factory_.RevokeAll(); |
| 118 MessageLoop::current()->PostDelayedTask( | 118 MessageLoop::current()->PostDelayedTask( |
| 119 FROM_HERE, | 119 FROM_HERE, |
| 120 task_factory_.NewRunnableMethod(&GpsLocationProviderLinux::DoGpsPollTask), | 120 task_factory_.NewRunnableMethod(&GpsLocationProviderLinux::DoGpsPollTask), |
| 121 interval); | 121 interval); |
| 122 } | 122 } |
| 123 | 123 |
| 124 LocationProviderBase* NewSystemLocationProvider() { | 124 LocationProviderBase* NewSystemLocationProvider() { |
| 125 return new GpsLocationProviderLinux(LibGps::New); | 125 return new GpsLocationProviderLinux(LibGps::New); |
| 126 } | 126 } |
| OLD | NEW |