| OLD | NEW | 
|   1 // Copyright 2016 The Chromium Authors. All rights reserved. |   1 // Copyright 2016 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/public/browser/geolocation_delegate.h" |   5 #include "content/public/browser/geolocation_delegate.h" | 
 |   6  | 
 |   7 #include "content/public/browser/access_token_store.h" | 
|   6 #include "content/public/browser/location_provider.h" |   8 #include "content/public/browser/location_provider.h" | 
|   7  |   9  | 
|   8 namespace content { |  10 namespace content { | 
|   9  |  11  | 
|  10 bool GeolocationDelegate::UseNetworkLocationProviders() { |  12 bool GeolocationDelegate::UseNetworkLocationProviders() { | 
|  11   return true; |  13   return true; | 
|  12 } |  14 } | 
|  13  |  15  | 
|  14 AccessTokenStore* GeolocationDelegate::CreateAccessTokenStore() { |  16 scoped_refptr<AccessTokenStore> GeolocationDelegate::CreateAccessTokenStore() { | 
|  15   return nullptr; |  17   return nullptr; | 
|  16 } |  18 } | 
|  17  |  19  | 
|  18 std::unique_ptr<LocationProvider> |  20 std::unique_ptr<LocationProvider> | 
|  19 GeolocationDelegate::OverrideSystemLocationProvider() { |  21 GeolocationDelegate::OverrideSystemLocationProvider() { | 
|  20   return nullptr; |  22   return nullptr; | 
|  21 } |  23 } | 
|  22  |  24  | 
|  23 }  // namespace content |  25 }  // namespace content | 
| OLD | NEW |