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

Unified Diff: chrome/browser/net/sdch_browsertest.cc

Issue 505293002: Remove implicit conversions from scoped_refptr to T* in chrome/browser/net/ (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
« no previous file with comments | « chrome/browser/net/network_stats.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/sdch_browsertest.cc
diff --git a/chrome/browser/net/sdch_browsertest.cc b/chrome/browser/net/sdch_browsertest.cc
index 76567e2c994926b675697ab227d15bc11347898a..0401b252bf14fe3be4910e1e5a523c9c39b3f030 100644
--- a/chrome/browser/net/sdch_browsertest.cc
+++ b/chrome/browser/net/sdch_browsertest.cc
@@ -285,7 +285,7 @@ class SdchBrowserTest : public InProcessBrowserTest, net::URLFetcherDelegate {
}
void FetchUrl(GURL url) {
- FetchUrlDetailed(url, url_request_context_getter_);
+ FetchUrlDetailed(url, url_request_context_getter_.get());
}
const net::URLRequestStatus& FetcherStatus() const {
@@ -341,8 +341,8 @@ class SdchBrowserTest : public InProcessBrowserTest, net::URLFetcherDelegate {
}
bool GetData(bool* sdch_encoding_used) {
- return GetDataDetailed(
- url_request_context_getter_, sdch_encoding_used);
+ return GetDataDetailed(url_request_context_getter_.get(),
+ sdch_encoding_used);
}
// Client information and control.
« no previous file with comments | « chrome/browser/net/network_stats.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698