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

Unified Diff: chrome/browser/chromeos/timezone/timezone_provider.cc

Issue 555253005: Remove implicit conversions from scoped_refptr to T* in c/b/chromeos (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 | « chrome/browser/chromeos/preferences.cc ('k') | chrome/browser/chromeos/timezone/timezone_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/timezone/timezone_provider.cc
diff --git a/chrome/browser/chromeos/timezone/timezone_provider.cc b/chrome/browser/chromeos/timezone/timezone_provider.cc
index 6474acf2cc70c62c0d86ca3bbb176f9036a7d6b2..4dd26f68769e7df7196b194e0c4c94e1015844a6 100644
--- a/chrome/browser/chromeos/timezone/timezone_provider.cc
+++ b/chrome/browser/chromeos/timezone/timezone_provider.cc
@@ -32,7 +32,7 @@ void TimeZoneProvider::RequestTimezone(
base::TimeDelta timeout,
TimeZoneRequest::TimeZoneResponseCallback callback) {
TimeZoneRequest* request(new TimeZoneRequest(
- url_context_getter_, url_, position, sensor, timeout));
+ url_context_getter_.get(), url_, position, sensor, timeout));
requests_.push_back(request);
// TimeZoneProvider owns all requests. It is safe to pass unretained "this"
« no previous file with comments | « chrome/browser/chromeos/preferences.cc ('k') | chrome/browser/chromeos/timezone/timezone_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698