summaryrefslogtreecommitdiffstats
path: root/chromeos/geolocation
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2015-12-30 20:56:39 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-31 04:57:55 +0000
commit7df85ba2d56769fc627ed8e21f916705736df8e7 (patch)
tree8a56a0c1e1b8c9f15ed3f3c1a1a0e1591bc78fbf /chromeos/geolocation
parent023d488b047379f778fccae7e436dd246dc42cdb (diff)
downloadchromium_src-7df85ba2d56769fc627ed8e21f916705736df8e7.zip
chromium_src-7df85ba2d56769fc627ed8e21f916705736df8e7.tar.gz
chromium_src-7df85ba2d56769fc627ed8e21f916705736df8e7.tar.bz2
Convert Pass()→std::move() in //chromeos
(╯^□^)╯︵ ❄☃❄ BUG=557422 R=avi@chromium.org TBR=stevenjb@chromium.org Review URL: https://codereview.chromium.org/1556773002 Cr-Commit-Position: refs/heads/master@{#367230}
Diffstat (limited to 'chromeos/geolocation')
-rw-r--r--chromeos/geolocation/simple_geolocation_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/geolocation/simple_geolocation_unittest.cc b/chromeos/geolocation/simple_geolocation_unittest.cc
index ba4eb2e..6c8fb42 100644
--- a/chromeos/geolocation/simple_geolocation_unittest.cc
+++ b/chromeos/geolocation/simple_geolocation_unittest.cc
@@ -79,7 +79,7 @@ class TestGeolocationAPIURLFetcherCallback {
new net::HttpResponseHeaders(std::string());
download_headers->AddHeader("Content-Type: application/json");
fetcher->set_response_headers(download_headers);
- return fetcher.Pass();
+ return fetcher;
}
void Initialize(net::FakeURLFetcherFactory* factory) {