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

Unified Diff: chromeos/geolocation/simple_geolocation_unittest.cc

Issue 2285393004: Replace deprecated ScopedVector<T> in chromeos::SimpleGeolocationProvider (Closed)
Patch Set: Created 4 years, 4 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
« no previous file with comments | « chromeos/geolocation/simple_geolocation_provider.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/geolocation/simple_geolocation_unittest.cc
diff --git a/chromeos/geolocation/simple_geolocation_unittest.cc b/chromeos/geolocation/simple_geolocation_unittest.cc
index 9ea77e4fa211914df0ae0028d8acebba6be1ad5e..93ff93eba967824c648167a3e875000b1d07b228 100644
--- a/chromeos/geolocation/simple_geolocation_unittest.cc
+++ b/chromeos/geolocation/simple_geolocation_unittest.cc
@@ -84,7 +84,8 @@ class TestGeolocationAPIURLFetcherCallback {
net::URLRequestStatus::Status status) {
EXPECT_EQ(provider_->requests_.size(), 1U);
- SimpleGeolocationRequest* geolocation_request = provider_->requests_[0];
+ SimpleGeolocationRequest* geolocation_request =
+ provider_->requests_[0].get();
const base::TimeDelta base_retry_interval =
base::TimeDelta::FromMilliseconds(kRequestRetryIntervalMilliSeconds);
« no previous file with comments | « chromeos/geolocation/simple_geolocation_provider.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698