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

Side by Side Diff: content/public/browser/geolocation_delegate.cc

Issue 2129313002: Geolocation cleanup: corrects uses of content::AccessTokenStore* and net::URLRequestContextGetter* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed StartTestStepFromClientThread() Created 4 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
OLDNEW
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
OLDNEW
« no previous file with comments | « content/public/browser/geolocation_delegate.h ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698