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

Side by Side Diff: content/browser/geolocation/location_provider_android.cc

Issue 18152002: Use a direct include of time headers in content/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/geolocation/location_provider_android.h" 5 #include "content/browser/geolocation/location_provider_android.h"
6 6
7 #include "base/time.h" 7 #include "base/time/time.h"
8 #include "content/browser/geolocation/location_api_adapter_android.h" 8 #include "content/browser/geolocation/location_api_adapter_android.h"
9 #include "content/public/common/geoposition.h" 9 #include "content/public/common/geoposition.h"
10 10
11 namespace content { 11 namespace content {
12 12
13 // LocationProviderAndroid 13 // LocationProviderAndroid
14 LocationProviderAndroid::LocationProviderAndroid() { 14 LocationProviderAndroid::LocationProviderAndroid() {
15 } 15 }
16 16
17 LocationProviderAndroid::~LocationProviderAndroid() { 17 LocationProviderAndroid::~LocationProviderAndroid() {
(...skipping 24 matching lines...) Expand all
42 42
43 void LocationProviderAndroid::OnPermissionGranted() { 43 void LocationProviderAndroid::OnPermissionGranted() {
44 // Nothing to do here. 44 // Nothing to do here.
45 } 45 }
46 46
47 LocationProvider* NewSystemLocationProvider() { 47 LocationProvider* NewSystemLocationProvider() {
48 return new LocationProviderAndroid; 48 return new LocationProviderAndroid;
49 } 49 }
50 50
51 } // namespace content 51 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/geolocation/location_arbitrator_impl.h ('k') | content/browser/geolocation/network_location_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698