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

Unified Diff: chrome/browser/local_discovery/privet_url_fetcher.cc

Issue 502173004: Remove implicit conversions from scoped_refptr to T* in chrome/browser/local_discovery/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: chrome/browser/local_discovery/privet_url_fetcher.cc
diff --git a/chrome/browser/local_discovery/privet_url_fetcher.cc b/chrome/browser/local_discovery/privet_url_fetcher.cc
index ecf7c585b980777c7a76b69b9316866801342875..e26a062ffe5cb5f9944e5f946d6fa2be0a64a4ce 100644
--- a/chrome/browser/local_discovery/privet_url_fetcher.cc
+++ b/chrome/browser/local_discovery/privet_url_fetcher.cc
@@ -148,7 +148,7 @@ void PrivetURLFetcher::Try() {
url_fetcher_.reset(net::URLFetcher::Create(url_, request_type_, this));
- url_fetcher_->SetRequestContext(request_context_);
+ url_fetcher_->SetRequestContext(request_context_.get());
if (v3_mode_) {
std::string auth_token = delegate_->GetAuthToken();

Powered by Google App Engine
This is Rietveld 408576698