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

Unified Diff: components/autofill/content/browser/wallet/wallet_client_unittest.cc

Issue 503883005: Remove implicit conversions from scoped_refptr to T* in components/autofill/ (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 | « no previous file | components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/content/browser/wallet/wallet_client_unittest.cc
diff --git a/components/autofill/content/browser/wallet/wallet_client_unittest.cc b/components/autofill/content/browser/wallet/wallet_client_unittest.cc
index 66ce1e6ec9e65ddb2250a468f0a6b3a1b9f4234e..042c695e7ed4e2cefe3ee54a89bc8ad12e041af8 100644
--- a/components/autofill/content/browser/wallet/wallet_client_unittest.cc
+++ b/components/autofill/content/browser/wallet/wallet_client_unittest.cc
@@ -729,10 +729,8 @@ class WalletClientTest : public testing::Test {
virtual ~WalletClientTest() {}
virtual void SetUp() OVERRIDE {
- wallet_client_.reset(
- new WalletClient(request_context_,
- &delegate_,
- GURL(kMerchantUrl)));
+ wallet_client_.reset(new WalletClient(
+ request_context_.get(), &delegate_, GURL(kMerchantUrl)));
}
virtual void TearDown() OVERRIDE {
« no previous file with comments | « no previous file | components/autofill/content/browser/wallet/wallet_signin_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698