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

Unified Diff: content/browser/geolocation/location_arbitrator_impl_unittest.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: 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/geolocation/location_arbitrator_impl_unittest.cc
diff --git a/content/browser/geolocation/location_arbitrator_impl_unittest.cc b/content/browser/geolocation/location_arbitrator_impl_unittest.cc
index 207fd041477353e888cd94df6fc086d4827978ec..59b76109bf2ba26f9d4a7ee5674295a906b0e666 100644
--- a/content/browser/geolocation/location_arbitrator_impl_unittest.cc
+++ b/content/browser/geolocation/location_arbitrator_impl_unittest.cc
@@ -106,8 +106,8 @@ class TestingLocationArbitrator : public LocationArbitratorImpl {
base::Time GetTimeNow() const override { return GetTimeNowForTest(); }
- AccessTokenStore* NewAccessTokenStore() override {
- return access_token_store_.get();
+ scoped_refptr<AccessTokenStore> NewAccessTokenStore() override {
+ return access_token_store_;
}
std::unique_ptr<LocationProvider> NewNetworkLocationProvider(

Powered by Google App Engine
This is Rietveld 408576698