| Index: content/public/browser/geolocation_delegate.cc
|
| diff --git a/content/public/browser/geolocation_provider.cc b/content/public/browser/geolocation_delegate.cc
|
| similarity index 49%
|
| rename from content/public/browser/geolocation_provider.cc
|
| rename to content/public/browser/geolocation_delegate.cc
|
| index 738bb9d51f774b3c4108a6f739f8f9b7d7fa0985..8975fed40259c597351308e604e4f2979d43c868 100644
|
| --- a/content/public/browser/geolocation_provider.cc
|
| +++ b/content/public/browser/geolocation_delegate.cc
|
| @@ -2,21 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "content/public/browser/geolocation_provider.h"
|
| +#include "content/public/browser/geolocation_delegate.h"
|
|
|
| namespace content {
|
|
|
| -bool GeolocationProvider::Delegate::UseNetworkLocationProviders() {
|
| +bool GeolocationDelegate::UseNetworkLocationProviders() {
|
| return true;
|
| }
|
|
|
| -AccessTokenStore*
|
| -GeolocationProvider::Delegate::CreateAccessTokenStore() {
|
| +AccessTokenStore* GeolocationDelegate::CreateAccessTokenStore() {
|
| return nullptr;
|
| }
|
|
|
| -LocationProvider*
|
| -GeolocationProvider::Delegate::OverrideSystemLocationProvider() {
|
| +LocationProvider* GeolocationDelegate::OverrideSystemLocationProvider() {
|
| return nullptr;
|
| }
|
|
|
|
|