| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/public/browser/geolocation_delegate.h" | |
| 6 | |
| 7 #include "content/public/browser/access_token_store.h" | |
| 8 #include "content/public/browser/location_provider.h" | |
| 9 | |
| 10 namespace content { | |
| 11 | |
| 12 bool GeolocationDelegate::UseNetworkLocationProviders() { | |
| 13 return true; | |
| 14 } | |
| 15 | |
| 16 scoped_refptr<AccessTokenStore> GeolocationDelegate::CreateAccessTokenStore() { | |
| 17 return nullptr; | |
| 18 } | |
| 19 | |
| 20 std::unique_ptr<LocationProvider> | |
| 21 GeolocationDelegate::OverrideSystemLocationProvider() { | |
| 22 return nullptr; | |
| 23 } | |
| 24 | |
| 25 } // namespace content | |
| OLD | NEW |