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

Unified Diff: chrome/browser/chromeos/geolocation/simple_geolocation_provider.cc

Issue 577443002: Remove implicit conversions from scoped_refptr to T* in c/b/chromeos/geolocation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | chrome/browser/chromeos/geolocation/simple_geolocation_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/geolocation/simple_geolocation_provider.cc
diff --git a/chrome/browser/chromeos/geolocation/simple_geolocation_provider.cc b/chrome/browser/chromeos/geolocation/simple_geolocation_provider.cc
index f0c8ad5e41a6c18475f387537f9cdb402f9c7ab0..3d4dba3fe69211e26cfb68f706776481013ec423 100644
--- a/chrome/browser/chromeos/geolocation/simple_geolocation_provider.cc
+++ b/chrome/browser/chromeos/geolocation/simple_geolocation_provider.cc
@@ -35,7 +35,7 @@ void SimpleGeolocationProvider::RequestGeolocation(
SimpleGeolocationRequest::ResponseCallback callback) {
DCHECK(thread_checker_.CalledOnValidThread());
SimpleGeolocationRequest* request(
- new SimpleGeolocationRequest(url_context_getter_, url_, timeout));
+ new SimpleGeolocationRequest(url_context_getter_.get(), url_, timeout));
requests_.push_back(request);
// SimpleGeolocationProvider owns all requests. It is safe to pass unretained
« no previous file with comments | « no previous file | chrome/browser/chromeos/geolocation/simple_geolocation_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698