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

Side by Side Diff: chrome/browser/geolocation/gps_location_provider_linux.cc

Issue 6597044: Revert 76228 - Move core pieces of geolocation from chrome to content.This is... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698