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

Unified Diff: chrome/browser/chromeos/timezone/timezone_request.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
Index: chrome/browser/chromeos/timezone/timezone_request.cc
diff --git a/chrome/browser/chromeos/timezone/timezone_request.cc b/chrome/browser/chromeos/timezone/timezone_request.cc
index 1ceb70bbbf77aa676c6231c41a6e249c5f4c8a9f..3db63d072c09c768fbad5bdc5c89130d7de7b21c 100644
--- a/chrome/browser/chromeos/timezone/timezone_request.cc
+++ b/chrome/browser/chromeos/timezone/timezone_request.cc
@@ -337,7 +337,7 @@ void TimeZoneRequest::StartRequest() {
url_fetcher_.reset(
net::URLFetcher::Create(request_url_, net::URLFetcher::GET, this));
- url_fetcher_->SetRequestContext(url_context_getter_);
+ url_fetcher_->SetRequestContext(url_context_getter_.get());
url_fetcher_->SetLoadFlags(net::LOAD_BYPASS_CACHE |
net::LOAD_DISABLE_CACHE |
net::LOAD_DO_NOT_SAVE_COOKIES |

Powered by Google App Engine
This is Rietveld 408576698