| Index: content/public/browser/geolocation_delegate.cc
|
| diff --git a/content/public/browser/geolocation_delegate.cc b/content/public/browser/geolocation_delegate.cc
|
| index 2894f461c89150859fdf84f4aa7b74f99d87749f..609500ecd74208764821fe7e36ccfc808a0435b9 100644
|
| --- a/content/public/browser/geolocation_delegate.cc
|
| +++ b/content/public/browser/geolocation_delegate.cc
|
| @@ -3,6 +3,8 @@
|
| // found in the LICENSE file.
|
|
|
| #include "content/public/browser/geolocation_delegate.h"
|
| +
|
| +#include "content/public/browser/access_token_store.h"
|
| #include "content/public/browser/location_provider.h"
|
|
|
| namespace content {
|
| @@ -11,7 +13,7 @@ bool GeolocationDelegate::UseNetworkLocationProviders() {
|
| return true;
|
| }
|
|
|
| -AccessTokenStore* GeolocationDelegate::CreateAccessTokenStore() {
|
| +scoped_refptr<AccessTokenStore> GeolocationDelegate::CreateAccessTokenStore() {
|
| return nullptr;
|
| }
|
|
|
|
|